Added support for AppDefs; Updated currend XML

This commit is contained in:
Simon Martens
2022-11-25 20:05:29 +01:00
parent 02abfb111a
commit ccfcadb91b
22 changed files with 526633 additions and 79611 deletions

View File

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