UpnpDeviceInfo.cs 371 B

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