updated RtcOffer to reflect proper communication needs and added todo

This commit is contained in:
2026-04-03 16:24:13 -04:00
parent f24a255d12
commit cf70b82024
3 changed files with 11 additions and 8 deletions

View File

@@ -6,7 +6,9 @@ public class RtcOffer : Record
{
public required string ChannelId { get; set; }
public required string Username { get; set; }
public required string Sdp { get; set; }
public required RtcSessionDescription SessionDescription { get; set; }
// public required string Type { get; set; }
// public required string Sdp { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}