aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-07-17 16:19:06 +0100
committerBaronGreenback <jimcartlidge@yahoo.co.uk>2020-07-17 16:19:06 +0100
commit6b4cea604ce9128b6d306e010035c14f6cb75ec4 (patch)
tree2a371e14592a058085772fe6deef0d849b92cfc8
parent12478c7196156d8aefdd3061926a9d5cc3ce6a20 (diff)
Suggested changes and removed some intellisense messages.
-rw-r--r--MediaBrowser.Model/Notifications/NotificationOption.cs9
1 files changed, 4 insertions, 5 deletions
diff --git a/MediaBrowser.Model/Notifications/NotificationOption.cs b/MediaBrowser.Model/Notifications/NotificationOption.cs
index dc8d27baf..58aecb3d3 100644
--- a/MediaBrowser.Model/Notifications/NotificationOption.cs
+++ b/MediaBrowser.Model/Notifications/NotificationOption.cs
@@ -1,3 +1,4 @@
+#pragma warning disable CA1819 // Properties should not return arrays
#pragma warning disable CS1591
using System;
@@ -9,7 +10,6 @@ namespace MediaBrowser.Model.Notifications
public NotificationOption(string type)
{
Type = type;
-
DisabledServices = Array.Empty<string>();
DisabledMonitorUsers = Array.Empty<string>();
SendToUsers = Array.Empty<string>();
@@ -17,21 +17,20 @@ namespace MediaBrowser.Model.Notifications
public NotificationOption()
{
- Type = string.Empty;
DisabledServices = Array.Empty<string>();
DisabledMonitorUsers = Array.Empty<string>();
SendToUsers = Array.Empty<string>();
}
- public string Type { get; set; }
+ public string? Type { get; set; }
/// <summary>
- /// User Ids to not monitor (it's opt out).
+ /// Gets or sets user Ids to not monitor (it's opt out).
/// </summary>
public string[] DisabledMonitorUsers { get; set; }
/// <summary>
- /// User Ids to send to (if SendToUserMode == Custom)
+ /// Gets or sets user Ids to send to (if SendToUserMode == Custom).
/// </summary>
public string[] SendToUsers { get; set; }