new usertype enum

This commit is contained in:
jojo aquino 2025-01-02 20:54:02 +00:00
parent b1803fbd27
commit fa4ee274ac

View File

@ -0,0 +1,11 @@
namespace EnotaryoPH.Data.Constants
{
public enum UserType
{
Principal = 1,
Witness = 2,
Notary = 3,
SuperUser = 10,
Administrator = 100
}
}