namespace Marco.Pms.Model.Utilities { public class ExpensesFilter { public List? ProjectIds { get; set; } public List? StatusIds { get; set; } public List? CreatedByIds { get; set; } public List? PaidById { get; set; } public List? ExpenseTypeIds { get; set; } public bool IsTransactionDate { get; set; } = false; public DateTime? StartDate { get; set; } public DateTime? EndDate { get; set; } } }