using System; namespace BuddyFinance.Integration.Models.Profiles { public class SuspendProfileModel { public string ProfileId { get; set; } public bool Suspend { get; set; } public DateTime? EndDate { get; set; } public string Comments { get; set; } public string UserId { get; set; } } }