Update: Needs Testing - Not Tested

This commit is contained in:
2026-04-04 16:17:57 -04:00
parent c89a0cf88b
commit 3f27c94032
4 changed files with 70 additions and 11 deletions

View File

@@ -0,0 +1,9 @@
namespace RelayServer.Models.Rtc;
public sealed class RtcNotificationMessage
{
public required string Type { get; set; } // rtc_offer_updated / rtc_answer_updated / rtc_candidate_added
public required string ChannelId { get; set; }
public string? Username { get; set; }
public string? Direction { get; set; }
}