Implemented new rating system

This commit is contained in:
Marcel Baumgartner
2023-05-04 12:42:50 +02:00
parent a33b81dd98
commit 4d9ab9763e
10 changed files with 1324 additions and 1 deletions

View File

@@ -29,6 +29,8 @@ public class User
public UserStatus Status { get; set; } = UserStatus.Unverified;
public bool Admin { get; set; } = false;
public bool SupportPending { get; set; } = false;
public bool HasRated { get; set; } = false;
public int Rating { get; set; } = 0;
// Security
public bool TotpEnabled { get; set; } = false;