8 lines
206 B
C#
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; }
|
|
} |