2 Commits

Author SHA1 Message Date
CakeAndBanana
75469f6d5c Changed GroupProfileDTO to include NSFW and Disabled profiles 2025-10-15 23:18:59 +02:00
44fbe10458 LightFinder Changes + Adding LightSpeed
Reviewed-on: #7
2025-10-10 00:56:44 +02: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);
} }