This commit is contained in:
Thanakarn Klangkasame
2025-09-30 11:01:02 +07:00
commit 92e614674c
182 changed files with 9596 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace AMREZ.EOP.Domain.Shared._Users;
public enum ExternalProvider
{
Google = 1,
Apple = 2,
Microsoft = 3,
Facebook = 4,
Line = 5,
Other = 9
}

View File

@@ -0,0 +1,9 @@
namespace AMREZ.EOP.Domain.Shared._Users;
public enum IdentityType
{
Email = 1,
Phone = 2,
Username = 3,
Other = 9
}

View File

@@ -0,0 +1,9 @@
namespace AMREZ.EOP.Domain.Shared._Users;
public enum MfaType
{
Totp = 1,
Sms = 2,
EmailOtp = 3,
WebAuthn = 4
}