profileShare

rasmusjy / splitapp-backend-clean-onion

Read-only snapshot

No repository description.

main default branch 429 files Expires Sep 13, 2026, 9:06 AM
CurrencyBllDto.cs 345 bytes
1 using Base.Domain;
2
3 namespace App.BLL.DTO;
4
5 public class CurrencyBllDto
6 {
7 public Guid Id { get; set; }
8 public DateTime CreatedAt { get; set; }
9 public DateTime UpdatedAt { get; set; }
10
11 public string Code { get; set; } = default!;
12 public LangStr Name { get; set; } = new();
13 public string Symbol { get; set; } = default!;
14 }
15