From fa4ee274ac74b9f75da7e96c931785e871580038 Mon Sep 17 00:00:00 2001 From: jojo aquino Date: Thu, 2 Jan 2025 20:54:02 +0000 Subject: [PATCH] new usertype enum --- EnotaryoPH/EnotaryoPH.Data/Constants/UserType.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 EnotaryoPH/EnotaryoPH.Data/Constants/UserType.cs diff --git a/EnotaryoPH/EnotaryoPH.Data/Constants/UserType.cs b/EnotaryoPH/EnotaryoPH.Data/Constants/UserType.cs new file mode 100644 index 0000000..b839770 --- /dev/null +++ b/EnotaryoPH/EnotaryoPH.Data/Constants/UserType.cs @@ -0,0 +1,11 @@ +namespace EnotaryoPH.Data.Constants +{ + public enum UserType + { + Principal = 1, + Witness = 2, + Notary = 3, + SuperUser = 10, + Administrator = 100 + } +} \ No newline at end of file