aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Common/DeviceService.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2020-11-16 17:11:20 -0500
committerGitHub <noreply@github.com>2020-11-16 17:11:20 -0500
commite86db484ef34e1f4910d2088414913e1d266f68d (patch)
tree2e34ec64b18c45fc664196faf1d1f587b42e7db6 /Emby.Dlna/Common/DeviceService.cs
parent355c0c802fd64ca707e99833c722f9ccd028872e (diff)
parent27bb17ef9d0ba72cb8c6a0a6f306c4226f132ac3 (diff)
Merge pull request #4136 from BaronGreenback/Comment1
DLNA Classes - No code change, just added commenting to classes.
Diffstat (limited to 'Emby.Dlna/Common/DeviceService.cs')
-rw-r--r--Emby.Dlna/Common/DeviceService.cs33
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;
}
}