diff options
| author | Cody Robibero <cody@robibe.ro> | 2020-11-16 17:07:06 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-16 17:07:06 -0700 |
| commit | be3c65d80f4b2972a2e1a60ed3894102c0ee9cb8 (patch) | |
| tree | 84ae4cf9f5142b697d8164090562f027787f754e /Emby.Dlna/Common/DeviceService.cs | |
| parent | 1d96167e8d58ff59859ae5b9afc1f9e0f6bed74f (diff) | |
| parent | 7b42b7e8bd40ef7bd6bb6a533cb3c9dfcd00c63f (diff) | |
Merge branch 'master' into docker-pls
Diffstat (limited to 'Emby.Dlna/Common/DeviceService.cs')
| -rw-r--r-- | Emby.Dlna/Common/DeviceService.cs | 33 |
1 files changed, 24 insertions, 9 deletions
diff --git a/Emby.Dlna/Common/DeviceService.cs b/Emby.Dlna/Common/DeviceService.cs index 44c0a0412..c1369558e 100644 --- a/Emby.Dlna/Common/DeviceService.cs +++ b/Emby.Dlna/Common/DeviceService.cs @@ -1,21 +1,36 @@ -#pragma warning disable CS1591 - namespace Emby.Dlna.Common { + /// <summary> + /// Defines the <see cref="DeviceService" />. + /// </summary> public class DeviceService { - public string ServiceType { get; set; } + /// <summary> + /// Gets or sets the Service Type. + /// </summary> + public string ServiceType { get; set; } = string.Empty; - public string ServiceId { get; set; } + /// <summary> + /// Gets or sets the Service Id. + /// </summary> + public string ServiceId { get; set; } = string.Empty; - public string ScpdUrl { get; set; } + /// <summary> + /// Gets or sets the Scpd Url. + /// </summary> + public string ScpdUrl { get; set; } = string.Empty; - public string ControlUrl { get; set; } + /// <summary> + /// Gets or sets the Control Url. + /// </summary> + public string ControlUrl { get; set; } = string.Empty; - public string EventSubUrl { get; set; } + /// <summary> + /// Gets or sets the EventSubUrl. + /// </summary> + public string EventSubUrl { get; set; } = string.Empty; /// <inheritdoc /> - public override string ToString() - => ServiceId; + public override string ToString() => ServiceId; } } |
