2
0

UpnpDeviceInfo.cs 384 B

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