using BuddyFinance.Integration.Models.Enums; namespace BuddyFinance.Integration.Models.Profiles { public class ReviewProfileModel { public string ProfileId { get; set; } public int ProfileTypeId { get; set; } public bool Approve { get; set; } public string Comments { get; set; } public string UserId { get; set; } } }