Implemented basic store and store admin system. Added alerts. Added db models for store

This commit is contained in:
Marcel Baumgartner
2023-10-18 21:09:14 +02:00
parent 4159170244
commit f7a16fd287
39 changed files with 3252 additions and 1 deletions

View File

@@ -9,6 +9,8 @@ public class User
public string? Avatar { get; set; } = null;
public string? TotpKey { get; set; } = null;
// Store
// Meta data
public string Flags { get; set; } = "";
public int Permissions { get; set; } = 0;