namespace BuddyFinance.Integration.Models.Profiles { public class SuspendProfileAccountModel { public string ProfileId { get; set; } public int ProfileTypeId { get; set; } public bool Suspend { get; set; } public string Comments { get; set; } public string UserId { get; set; } } }