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

11 lines
152 B
C#

namespace MyOffice.Services.Account.Domain
{
public enum AccountAddResult
{
success,
failure,
category_not_found,
currency_not_found,
}
}