Initial Commit

This commit is contained in:
2026-05-29 14:17:46 -04:00
commit b7d0676d5b
498 changed files with 30308 additions and 0 deletions
@@ -0,0 +1,9 @@
namespace Model.RoadMap.Enums;
public class ReleasePriorityType
{
public static string High = "High";
public static string Medium = "Medium";
public static string Low = "Low";
public static string Very_Low = "Very_Low";
}
@@ -0,0 +1,10 @@
namespace Model.RoadMap.Enums;
public class ReleaseStatusType
{
public static string In_Development = "In_Development";
public static string Done = "Done";
public static string Future_Possibility = "Future_Possibility";
public static string Planned = "Planned";
public static string Cancelled = "Cancelled";
}