No repository description.
namespace App.DTO.v1;
public class CurrencyDto
{
public Guid Id { get; set; }
public string Code { get; set; } = default!;
public string Name { get; set; } = default!;
public string Symbol { get; set; } = default!;
}