implement Broadcast and SessionManager services

This commit is contained in:
2026-05-02 22:01:21 +02:00
parent 750295eccf
commit 3166c6e647
6 changed files with 168 additions and 11 deletions

View File

@@ -1,4 +1,9 @@
namespace Chtn.CSharp.SDK.Models.Session
using Newtonsoft.Json;
namespace Chtn.CSharp.SDK.Models.Session
{
public class ValidateSessionReq { public string Token { get; set; } }
public class ValidateSessionReq
{
[JsonProperty("token")] public string Token { get; set; }
}
}