DeviceService.cs 427 B

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