8 lines
252 B
C#
8 lines
252 B
C#
using LightlessSync.API.Data;
|
|
using MessagePack;
|
|
|
|
namespace LightlessSync.API.Dto.Group;
|
|
|
|
[MessagePackObject(keyAsPropertyName: true)]
|
|
public record GroupPruneSettingsDto(GroupData Group, bool AutoPruneEnabled, int AutoPruneDays) : GroupDto(Group);
|