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,9 @@
using MessagePack;
namespace LightlessSync.API.Dto.User;
[MessagePackObject(keyAsPropertyName: true)]
public sealed class BroadcastStatusBatchDto
{
public Dictionary<string, BroadcastStatusInfoDto> Results { get; init; } = new();
}