14 lines
273 B
C#
14 lines
273 B
C#
namespace EnotaryoPH.Data.Constants
|
|
{
|
|
public enum TransactionState
|
|
{
|
|
New = 0,
|
|
SelfiePassed = 1,
|
|
DocumentUploaded = 2,
|
|
Submitted = 3,
|
|
Accepted = 4,
|
|
Approved = 5,
|
|
Rejected = 6,
|
|
Completed = 100
|
|
}
|
|
} |