Added category to app defs

This commit is contained in:
Simon Martens
2022-11-26 00:58:31 +01:00
parent e12223209a
commit 49c32dcc6a
12 changed files with 225 additions and 176 deletions

View File

@@ -2,12 +2,12 @@ namespace HaDocument.Models {
public class App {
public string Index { get; } = "";
public string Name { get; } = "";
public bool Category { get; } = false;
public string Category { get; } = "";
public App(
string index,
string name,
bool category
string category
) {
Index = index;
Name = name;