namespace Emby.Dlna.Common { /// /// Defines the . /// public class DeviceService { /// /// Gets or sets the Service Type. /// public string ServiceType { get; set; } = string.Empty; /// /// Gets or sets the Service Id. /// public string ServiceId { get; set; } = string.Empty; /// /// Gets or sets the Scpd Url. /// public string ScpdUrl { get; set; } = string.Empty; /// /// Gets or sets the Control Url. /// public string ControlUrl { get; set; } = string.Empty; /// /// Gets or sets the EventSubUrl. /// public string EventSubUrl { get; set; } = string.Empty; /// public override string ToString() => ServiceId; } }