Files
2023-07-29 16:25:16 +03:00

11 lines
160 B
C#

namespace MyOffice.Services.Account.Domain
{
public enum InviteAcceptStatus
{
success,
invite_not_found,
account_not_found,
already_accepted,
}
}