BudgetCategoryBllDto.cs
593 bytes
| 1 | using Base.Domain; |
|---|---|
| 2 | |
| 3 | namespace App.BLL.DTO; |
| 4 | |
| 5 | public class BudgetCategoryBllDto |
| 6 | { |
| 7 | public Guid Id { get; set; } |
| 8 | public DateTime CreatedAt { get; set; } |
| 9 | public DateTime UpdatedAt { get; set; } |
| 10 | |
| 11 | public Guid TripId { get; set; } |
| 12 | public TripBllDto? Trip { get; set; } |
| 13 | public string? TripName => Trip?.Name; |
| 14 | |
| 15 | public LangStr Name { get; set; } = new(); |
| 16 | public string? IconName { get; set; } |
| 17 | public decimal? PlannedAmount { get; set; } |
| 18 | public int DisplayOrder { get; set; } |
| 19 | public int ExpenseCount { get; set; } |
| 20 | public decimal SpentAmount { get; set; } |
| 21 | } |
| 22 | |