lightfinder support, context pairing

This commit is contained in:
2025-09-24 05:05:57 +09:00
parent a337481243
commit fd4cd52d2e
7 changed files with 67 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
using MessagePack;
namespace LightlessSync.API.Dto.Group;
[MessagePackObject(keyAsPropertyName: true)]
public sealed class GroupBroadcastRequestDto
{
public required string GID { get; init; }
public string? HashedCID { get; set; }
public required bool Enabled { get; init; }
}