Add nsfw and disabled in db

This commit is contained in:
defnotken
2025-10-15 12:39:46 -05:00
parent 7909850ad5
commit b36b1fb8f9
4 changed files with 1227 additions and 0 deletions

View File

@@ -15,4 +15,6 @@ public class GroupProfile
public string Description { get; set; }
public string Tags { get; set; }
public string Base64GroupProfileImage { get; set; }
public bool IsNSFW { get; set; } = false;
public bool ProfileDisabled { get; set; } = false;
}