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

11 lines
151 B
C#

namespace MyOffice.Services.Account.Domain
{
public enum AccountCategoryRemoveResult
{
success,
failure,
not_found,
accounts_exists,
}
}