DeviceDiscoveryInfo.cs 480 B

123456789101112131415161718192021
  1. using MediaBrowser.Dlna.PlayTo;
  2. using System;
  3. using System.Net;
  4. namespace MediaBrowser.Dlna.Ssdp
  5. {
  6. public class DeviceDiscoveryInfo
  7. {
  8. public Device Device { get; set; }
  9. /// <summary>
  10. /// The server's ip address that the device responded to
  11. /// </summary>
  12. public IPAddress LocalIpAddress { get; set; }
  13. public Uri Uri { get; set; }
  14. public string Usn { get; set; }
  15. public string Nt { get; set; }
  16. }
  17. }