Changed GroupProfileDTO to include NSFW and Disabled profiles #9

Merged
defnotken merged 2 commits from group-dto-changes into main 2025-10-16 20:29:53 +00:00

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);
} }