16 lines
264 B
C#
16 lines
264 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Common.Enums
|
|||
|
{
|
|||
|
public enum VerificationCodeType
|
|||
|
{
|
|||
|
PhoneNumberConfirmed,
|
|||
|
ForgetPassword,
|
|||
|
Login
|
|||
|
}
|
|||
|
}
|