Files
myoffice/MyOffice.Services/Currency/Domain/CurrencyGlobalDto.cs
T
2023-07-31 08:50:05 +03:00

10 lines
255 B
C#

namespace MyOffice.Services.Currency.Domain;
public class CurrencyGlobalDto
{
public string Id { get; set; } = null!;
public string Name { get; set; } = null!;
public string Symbol { get; set; } = null!;
public int DefaultQuantity { get; set; }
}