Implemented models
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
namespace PostFundManagement.Domain;
|
||||
|
||||
public enum Priority : int
|
||||
{
|
||||
Low = 1,
|
||||
Medium = 2,
|
||||
High = 3,
|
||||
Critical = 4
|
||||
}
|
||||
|
||||
public enum UnitOfMeasure : int
|
||||
{
|
||||
Count = 1,
|
||||
Percentage = 2,
|
||||
Currency = 3,
|
||||
Area = 4,
|
||||
Weight = 5,
|
||||
Volume = 6,
|
||||
DurationDays = 7,
|
||||
DurationMonths = 8,
|
||||
Ratio = 9
|
||||
}
|
||||
public enum ContractStatus : int
|
||||
{
|
||||
Draft = 1,
|
||||
PendingApproval = 2,
|
||||
Active = 3,
|
||||
Expired = 4,
|
||||
Terminated = 5,
|
||||
Amended = 6
|
||||
}
|
||||
|
||||
public enum RiskLikelihood : int
|
||||
{
|
||||
Rare = 1,
|
||||
Unlikely = 2,
|
||||
Possible = 3,
|
||||
Likely = 4,
|
||||
AlmostCertain = 5
|
||||
}
|
||||
|
||||
public enum RiskImpact : int
|
||||
{
|
||||
Negligible = 1,
|
||||
Minor = 2,
|
||||
Moderate = 3,
|
||||
Major = 4,
|
||||
Critical = 5
|
||||
}
|
||||
|
||||
public enum ApprovalStatus : int
|
||||
{
|
||||
Pending = 1,
|
||||
Review = 2,
|
||||
Approved = 3,
|
||||
Rejected = 4
|
||||
}
|
||||
|
||||
public enum ActivityStatus : int
|
||||
{
|
||||
Active = 1,
|
||||
Inactive = 2,
|
||||
Disabled = 3
|
||||
}
|
||||
Reference in New Issue
Block a user