feat(backend): add pride flag models
This commit is contained in:
parent
39b0917585
commit
a70078995b
9 changed files with 346 additions and 0 deletions
|
@ -21,6 +21,9 @@ public class User : BaseModel
|
|||
public List<Field> Fields { get; set; } = [];
|
||||
public Dictionary<Snowflake, CustomPreference> CustomPreferences { get; set; } = [];
|
||||
|
||||
public List<PrideFlag> Flags { get; set; } = [];
|
||||
public List<UserFlag> ProfileFlags { get; set; } = [];
|
||||
|
||||
public UserRole Role { get; set; } = UserRole.User;
|
||||
public string? Password { get; set; } // Password may be null if the user doesn't authenticate with an email address
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue