ExpenseSplitBllDto.cs
535 bytes
| 1 | using SplitApp.Shared.Kernel.Domain; |
|---|---|
| 2 | using SplitApp.Shared.Kernel.Localization; |
| 3 | |
| 4 | namespace SplitApp.WebApp.Application.DTO; |
| 5 | |
| 6 | public class ExpenseSplitBllDto |
| 7 | { |
| 8 | public Guid Id { get; set; } |
| 9 | public DateTime CreatedAt { get; set; } |
| 10 | public DateTime UpdatedAt { get; set; } |
| 11 | |
| 12 | public Guid ExpenseId { get; set; } |
| 13 | public Guid UserId { get; set; } |
| 14 | public string? UserFullName { get; set; } |
| 15 | public string? UserEmail { get; set; } |
| 16 | |
| 17 | public decimal Amount { get; set; } |
| 18 | public decimal? Percentage { get; set; } |
| 19 | } |
| 20 | |