Initial commit

This commit is contained in:
2022-03-28 18:44:08 -04:00
commit e43d9a90e7
267 changed files with 17049 additions and 0 deletions
@@ -0,0 +1,9 @@
namespace Model.Work.Tasks.Enums;
public class PriorityType {
public const string Blocker = "Blocker";
public const string High = "High";
public const string Medium = "Medium";
public const string Low = "Low";
public const string None = "None";
}
@@ -0,0 +1,12 @@
namespace Model.Work.Tasks.Enums;
public class ProjectType {
public const string Management = "Management";
public const string Immortal = "Management";
public const string Food = "Management";
public const string Job = "Management";
public const string Time = "Management";
public const string Maintence = "Management";
public const string Website = "Management";
public const string Tasks = "Management";
}
@@ -0,0 +1,7 @@
namespace Model.Work.Tasks.Enums;
public class SprintType {
public const string Current = "Current";
public const string Planned = "Planned";
public const string Completed = "Completed";
}
@@ -0,0 +1,10 @@
namespace Model.Work.Tasks.Enums;
public class StatusType {
public const string In_Progress = "In_Progress";
public const string Todo = "Todo";
public const string To_Test = "To_Test";
public const string Done = "Done";
public const string Canceled = "Canceled";
public const string Fun_Idea = "Fun_Idea";
}
@@ -0,0 +1,6 @@
namespace Model.Work.Tasks.Enums;
public class TaskType {
public const string Feature = "Feature";
public const string Bug = "Bug";
}