Added changes for the API to support profiles

This commit is contained in:
CakeAndBanana
2025-09-17 02:09:23 +02:00
parent a337481243
commit 28e1cc4695
5 changed files with 20 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
using LightlessSync.API.Data;
namespace LightlessSync.API.Dto.Group
{
public record GroupProfileDto(GroupData Group, string? Description, string? Tags, string? PictureBase64) : GroupDto(Group);
}