namespace RelayServer.Models.Rtc; public class RtcJoinResponse { public required string ChannelId { get; set; } public bool HasActiveCall { get; set; } public bool IsOfferer { get; set; } public string? OfferUser { get; set; } public string? OfferSdp { get; set; } }