new constants

This commit is contained in:
jojo aquino 2025-01-01 16:20:27 +00:00
parent 73dbf35711
commit ff28e9ee95
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,9 @@
namespace EnotaryoPH.Data.Constants
{
public enum SignatoryStatus
{
New = 0,
EmailSent = 1,
Registered = 2
}
}

View File

@ -0,0 +1,8 @@
namespace EnotaryoPH.Data.Constants
{
public enum SignatoryType
{
Principal = 1,
Witness = 2
}
}