UpnpDeviceInfo.cs 461 B

12345678910111213141516171819202122
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Net;
  6. namespace MediaBrowser.Model.Dlna
  7. {
  8. public class UpnpDeviceInfo
  9. {
  10. public Uri Location { get; set; }
  11. public Dictionary<string, string> Headers { get; set; }
  12. public IPAddress LocalIpAddress { get; set; }
  13. public int LocalPort { get; set; }
  14. public IPAddress RemoteIpAddress { get; set; }
  15. }
  16. }