profileShare

rasmusjy / splitapp-backend-microservices

Read-only snapshot

No repository description.

main default branch 501 files Expires Sep 13, 2026, 9:06 AM
BudgetCategoryBllDto.cs 674 bytes
1 using SplitApp.Shared.Kernel.Domain;
2 using SplitApp.Shared.Kernel.Localization;
3
4 namespace SplitApp.WebApp.Application.DTO;
5
6 public class BudgetCategoryBllDto
7 {
8 public Guid Id { get; set; }
9 public DateTime CreatedAt { get; set; }
10 public DateTime UpdatedAt { get; set; }
11
12 public Guid TripId { get; set; }
13 public TripBllDto? Trip { get; set; }
14 public string? TripName => Trip?.Name;
15
16 public LangStr Name { get; set; } = new();
17 public string? IconName { get; set; }
18 public decimal? PlannedAmount { get; set; }
19 public int DisplayOrder { get; set; }
20 public int ExpenseCount { get; set; }
21 public decimal SpentAmount { get; set; }
22 }
23