Some orgnization, and cleanup to come.

This commit is contained in:
2026-04-02 13:36:54 -04:00
parent 6287f4d19b
commit a4f0175ca4
30 changed files with 285 additions and 83 deletions

View File

@@ -0,0 +1,10 @@
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; }
}