17 lines
577 B
C#
17 lines
577 B
C#
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; }
|
|
}
|
|
|
|
public sealed class RtcIceNotificationMessage
|
|
{
|
|
public required string Type { get; set; }
|
|
public required string ChannelId { get; set; }
|
|
public string? Username { get; set; }
|
|
public required IceCandidate Candidate { get; set; }
|
|
} |