CurrencyBllDto.cs
426 bytes
| 1 | using SplitApp.Shared.Kernel.Domain; |
|---|---|
| 2 | using SplitApp.Shared.Kernel.Localization; |
| 3 | |
| 4 | namespace SplitApp.WebApp.Application.DTO; |
| 5 | |
| 6 | public class CurrencyBllDto |
| 7 | { |
| 8 | public Guid Id { get; set; } |
| 9 | public DateTime CreatedAt { get; set; } |
| 10 | public DateTime UpdatedAt { get; set; } |
| 11 | |
| 12 | public string Code { get; set; } = default!; |
| 13 | public LangStr Name { get; set; } = new(); |
| 14 | public string Symbol { get; set; } = default!; |
| 15 | } |
| 16 | |