Files
myoffice/MyOffice.Services/Currency/Domain/CurrencyEdit.cs
T
2023-07-21 21:06:45 +03:00

8 lines
206 B
C#

namespace MyOffice.Services.Currency.Domain;
public class CurrencyEdit
{
public string Name { get; set; } = null!;
public string ShortName { get; set; } = null!;
public bool IsPrimary { get; set; }
}