Files
myoffice/MyOffice.Services/Currency/Domain/AddCurrencyStatus.cs
T
2023-06-17 14:16:09 +03:00

17 lines
195 B
C#

namespace MyOffice.Services.Currency.Domain
{
public enum AddCurrencyStatus
{
success,
failed,
exists,
}
public enum CurrencyAddRateStatus
{
not_found,
success,
failed,
}
}