Changed GroupProfileDTO to include NSFW and Disabled profiles

This commit is contained in:
CakeAndBanana
2025-10-15 23:18:59 +02:00
parent 44fbe10458
commit 75469f6d5c

View File

@@ -2,5 +2,5 @@
namespace LightlessSync.API.Dto.Group namespace LightlessSync.API.Dto.Group
{ {
public record GroupProfileDto(GroupData Group, string? Description, string? Tags, string? PictureBase64) : GroupDto(Group); public record GroupProfileDto(GroupData Group, string? Description, string? Tags, string? PictureBase64, bool? IsNsfw, bool? IsDisabled) : GroupDto(Group);
} }