feat(Documents) Notes/Docs page improvements and warning cleanup

This commit is contained in:
2022-04-07 13:30:00 -04:00
parent b270453030
commit d82e60efdf
223 changed files with 4396 additions and 2861 deletions
+21
View File
@@ -0,0 +1,21 @@
namespace Model.Development.Git;
public class CommitType
{
public const string Feature = "Feature";
public const string Game_Patch = "Game Patch";
public const string Fix = "Fix";
public const string Documents = "Documents";
public const string Style = "Style";
public const string Refactor = "Refactor";
public const string Perf = "Perf";
public const string Test = "Test";
public const string Build = "Build";
public const string CI = "CI";
public const string Chore = "Chore";
public const string Typo = "Typo";
public const string Revert = "Revert";
public const string Planning = "Planning";
public const string PrivacyPolicy = "Privacy Policy";
public const string None = "None";
}
+14
View File
@@ -0,0 +1,14 @@
using System;
namespace Model.Development.Git;
public class GitChangeModel
{
public int Id { get; set; } = 1;
public int GitPatchModelId { get; set; } = 1;
public string Name { get; set; } = "Add name...";
public string Description { get; set; } = "Add desciption...";
public string Commit { get; set; } = CommitType.Feature;
public DateTime Date { get; set; } = DateTime.Now;
public string Important { get; set; } = "False";
}
+13
View File
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
namespace Model.Development.Git;
public class GitPatchModel
{
public int Id { get; set; } = 1;
public string Name { get; set; } = "Add name...";
public DateTime Date { get; set; } = DateTime.Now;
public ICollection<GitChangeModel> GitChangeModels { get; set; } = new List<GitChangeModel>();
public string Important { get; set; } = "False";
}