DeviceService.cs 430 B

123456789101112131415161718192021
  1. 
  2. namespace Emby.Dlna.Common
  3. {
  4. public class DeviceService
  5. {
  6. public string ServiceType { get; set; }
  7. public string ServiceId { get; set; }
  8. public string ScpdUrl { get; set; }
  9. public string ControlUrl { get; set; }
  10. public string EventSubUrl { get; set; }
  11. public override string ToString()
  12. {
  13. return string.Format("{0}", ServiceId);
  14. }
  15. }
  16. }