feat(Icons) Added font awesome icons (#29)

This commit is contained in:
2022-05-02 01:03:04 -04:00
committed by GitHub
parent a64d59bb46
commit 2465433b5f
18 changed files with 110 additions and 32 deletions
+1
View File
@@ -8,4 +8,5 @@ public class WebPageModel
public string Description { get; set; } = "Add description";
public string Href { get; set; } = null;
public string IsPrivate { get; set; } = "True";
}
+3
View File
@@ -10,6 +10,9 @@ public class WebSectionModel
public string Description { get; set; } = "Add description";
public int Order { get; set; } = 0;
public string IsPrivate { get; set; } = "True";
public string Icon { get; set; } = "fa-icons";
public bool OnlyIcon { get; set; } = false;
[NotMapped] public List<WebPageModel> WebPageModels { get; set; } = new();
}