Files
myoffice/MyOffice.Services/Item/Domain/ItemCategoryRemoveResult.cs
T
2023-06-22 10:01:27 +03:00

11 lines
145 B
C#

namespace MyOffice.Services.Item.Domain
{
public enum ItemCategoryRemoveResult
{
success,
failure,
not_found,
accounts_exists,
}
}