BudgetCategoryDto.cs
354 bytes
| 1 | namespace App.DTO.v1; |
|---|---|
| 2 | |
| 3 | public class BudgetCategoryDto |
| 4 | { |
| 5 | public Guid Id { get; set; } |
| 6 | public Guid TripId { get; set; } |
| 7 | public string Name { get; set; } = default!; |
| 8 | public string? IconName { get; set; } |
| 9 | public decimal? PlannedAmount { get; set; } |
| 10 | public decimal SpentAmount { get; set; } |
| 11 | public int DisplayOrder { get; set; } |
| 12 | } |
| 13 | |