using Newtonsoft.Json; using System.Collections.Generic; namespace Chtn.CSharp.SDK.Models.Call { public class StreamRegistry { [JsonProperty("streamKey")] public string SreamKey { get; set; } [JsonProperty("status")] public List Status { get; set; } [JsonProperty("streamUrl")] public List StreamUrl { get; set; } } public class CreateServerReq { [JsonProperty("channelId")] public List ChannelId { get; set; } [JsonProperty("name")] public List Name { get; set; } } public class GetRtmpDataReq { [JsonProperty("channelId")] public List ChannelId { get; set; } } public class BroadcastJoinWsRoomReq { [JsonProperty("connId")] public List ConnId { get; set; } [JsonProperty("channelId")] public List ChannelId { get; set; } } }