mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
11 lines
163 B
C#
11 lines
163 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public enum PlanProgress
|
|
{
|
|
Backlog = 0,
|
|
InProgress = 1,
|
|
Testing = 2,
|
|
Done = 3
|
|
}
|
|
}
|