From 50abb3eb5e3cd806a1ec14c5887c463bb2f0ed13 Mon Sep 17 00:00:00 2001 From: jojo aquino Date: Thu, 2 Jan 2025 21:19:01 +0000 Subject: [PATCH] constant values changes --- EnotaryoPH/EnotaryoPH.Data/Constants/LawyerStatus.cs | 8 ++++++++ EnotaryoPH/EnotaryoPH.Data/Constants/UserType.cs | 6 +++--- 2 files changed, 11 insertions(+), 3 deletions(-) create mode 100644 EnotaryoPH/EnotaryoPH.Data/Constants/LawyerStatus.cs 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 }