17 lines
195 B
C#
17 lines
195 B
C#
namespace MyOffice.Services.Currency.Domain
|
|
{
|
|
public enum AddCurrencyStatus
|
|
{
|
|
success,
|
|
failed,
|
|
exists,
|
|
}
|
|
|
|
public enum CurrencyAddRateStatus
|
|
{
|
|
not_found,
|
|
success,
|
|
failed,
|
|
}
|
|
}
|