Updated DTO

This commit is contained in:
cake
2025-12-06 22:58:30 +01:00
parent efb5a8072b
commit 9b2fea6fa4

View File

@@ -4,4 +4,4 @@ using MessagePack;
namespace LightlessSync.API.Dto.Group;
[MessagePackObject(keyAsPropertyName: true)]
public record GroupPruneSettingsDto(GroupData Group, bool AutoPruneEnabled, int AutoPruneDays);
public record GroupPruneSettingsDto(GroupData Group, bool AutoPruneEnabled, int AutoPruneDays) : GroupDto(Group);