using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.WebRTC { public class IceCandidate { /// /// Gets or sets the SDP mid string. /// public String SdpMid { get; set; } /// /// Gets or sets the SDP line index string. /// public int SdpMLineIndex { get; set; } /// /// Gets or sets the candidate string. /// public String Sdp { get; set; } } }