using BuddyFinance.Integration.Models.Profiles; using System; namespace BuddyFinance.Integration.Models.ManageCash { public class CashWithdrawal { public int Id { get; set; } public int ProfileId { get; set; } public double Amount { get; set; } public System.DateTime Date { get; set; } public string Comment { get; set; } public int Status { get; set; } public string User { get; set; } public DateTime? RewiewDate { get; set; } public BankingDetail BankingDetail { get; set; } public Profile Profile { get; set; } public Status WithdrawalStatus { get; set; } } }