using System; namespace BuddyFinance.Integration.Models.Profiles { public class Approval { public int ProfileId { get; set; } public Status Status { get; set; } public string RejectReason { get; set; } public DateTime ReviewDate { get; set; } public string Reviewer { get; set; } public int ReviewerId { get; set; } } }