2
0

DeviceService.cs 439 B

123456789101112131415161718192021
  1. #pragma warning disable CS1591
  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. /// <inheritdoc />
  12. public override string ToString()
  13. => ServiceId;
  14. }
  15. }