11 lines
160 B
C#
11 lines
160 B
C#
namespace MyOffice.Services.Account.Domain
|
|
{
|
|
public enum InviteAcceptStatus
|
|
{
|
|
success,
|
|
invite_not_found,
|
|
account_not_found,
|
|
already_accepted,
|
|
}
|
|
}
|