mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
added enums.
This commit is contained in:
parent
3909223d2f
commit
2eb9a58aa6
9
Enum/PlanPriority.cs
Normal file
9
Enum/PlanPriority.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace CarCareTracker.Enum
|
||||
{
|
||||
public enum PlanPriority
|
||||
{
|
||||
Critical = 0,
|
||||
Normal = 1,
|
||||
Low = 2
|
||||
}
|
||||
}
|
||||
10
Enum/PlanProgress.cs
Normal file
10
Enum/PlanProgress.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace CarCareTracker.Enum
|
||||
{
|
||||
public enum PlanProgress
|
||||
{
|
||||
Backlog = 0,
|
||||
InProgress = 1,
|
||||
Testing = 2,
|
||||
Done = 3
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user