2020-01-22 13:00:07 -07:00
|
|
|
#pragma warning disable CS1591
|
2019-01-13 12:54:44 -07:00
|
|
|
|
2016-10-29 15:34:54 -07:00
|
|
|
namespace Emby.Dlna.Common
|
2016-10-29 15:22:20 -07:00
|
|
|
{
|
|
|
|
public class DeviceService
|
|
|
|
{
|
|
|
|
public string ServiceType { get; set; }
|
|
|
|
|
|
|
|
public string ServiceId { get; set; }
|
|
|
|
|
|
|
|
public string ScpdUrl { get; set; }
|
|
|
|
|
|
|
|
public string ControlUrl { get; set; }
|
|
|
|
|
|
|
|
public string EventSubUrl { get; set; }
|
|
|
|
|
2020-01-22 13:00:07 -07:00
|
|
|
/// <inheritdoc />
|
2016-10-29 15:22:20 -07:00
|
|
|
public override string ToString()
|
2020-01-22 13:00:07 -07:00
|
|
|
=> ServiceId;
|
2016-10-29 15:22:20 -07:00
|
|
|
}
|
|
|
|
}
|