using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BuddyFinance.Integration.Models.ManageCash { public class WithdrawalRequestModel { public int Id { get; set; } public int ProfileId { get; set; } public string ProfileId_ { get; set; } public double Amount { get; set; } public DateTime Date { get; set; } public string Comment { get; set; } public int Status { get; set; } public int StatusId { get; set; } public bool IsWithdrawalValidated { get; set; } = false; } }