profileShare

rasmusjy / splitapp-backend-clean-onion

Read-only snapshot

No repository description.

main default branch 429 files Expires Sep 13, 2026, 9:06 AM
CurrencyDto.cs 234 bytes
1 namespace App.DTO.v1;
2
3 public class CurrencyDto
4 {
5 public Guid Id { get; set; }
6 public string Code { get; set; } = default!;
7 public string Name { get; set; } = default!;
8 public string Symbol { get; set; } = default!;
9 }
10