9 lines
162 B
C#
9 lines
162 B
C#
|
|
namespace Brizco.Domain.Enums;
|
|||
|
|
|
|||
|
|
public enum SignUpStatus
|
|||
|
|
{
|
|||
|
|
StartSignUp = 0,
|
|||
|
|
PhoneNumberVerified = 1,
|
|||
|
|
ComplexCreated = 2,
|
|||
|
|
SignUpCompleted = 3,
|
|||
|
|
}
|