11 lines
151 B
C#
11 lines
151 B
C#
namespace MyOffice.Services.Account.Domain
|
|
{
|
|
public enum AccountCategoryRemoveResult
|
|
{
|
|
success,
|
|
failure,
|
|
not_found,
|
|
accounts_exists,
|
|
}
|
|
}
|