diff --git a/EnotaryoPH/EnotaryoPH.Data/Constants/LawyerStatus.cs b/EnotaryoPH/EnotaryoPH.Data/Constants/LawyerStatus.cs new file mode 100644 index 0000000..98acf17 --- /dev/null +++ b/EnotaryoPH/EnotaryoPH.Data/Constants/LawyerStatus.cs @@ -0,0 +1,8 @@ +namespace EnotaryoPH.Data.Constants +{ + public enum LawyerStatus + { + New = 0, + FingerprintScanned = 5 + } +} \ No newline at end of file diff --git a/EnotaryoPH/EnotaryoPH.Data/Constants/UserType.cs b/EnotaryoPH/EnotaryoPH.Data/Constants/UserType.cs index b839770..d2bae8e 100644 --- a/EnotaryoPH/EnotaryoPH.Data/Constants/UserType.cs +++ b/EnotaryoPH/EnotaryoPH.Data/Constants/UserType.cs @@ -2,9 +2,9 @@ { public enum UserType { - Principal = 1, - Witness = 2, - Notary = 3, + Principal = 0, + Witness = 1, + Notary = 2, SuperUser = 10, Administrator = 100 }