Adding group profile to the group model

This commit is contained in:
defnotken
2025-09-16 19:54:31 -05:00
parent 0df7ee424d
commit b669e2cb24
6 changed files with 1213 additions and 9 deletions

View File

@@ -11,6 +11,7 @@ public class Group
public User Owner { get; set; }
[MaxLength(50)]
public string Alias { get; set; }
public GroupProfile? Profile { get; set; }
public bool InvitesEnabled { get; set; }
public string HashedPassword { get; set; }
public bool PreferDisableSounds { get; set; }