2020-07-17 15:19:06 +00:00
|
|
|
#pragma warning disable CA1819 // Properties should not return arrays
|
2020-02-04 00:49:27 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Notifications
|
|
|
|
{
|
|
|
|
public class NotificationOption
|
|
|
|
{
|
2020-04-05 16:10:56 +00:00
|
|
|
public NotificationOption(string type)
|
|
|
|
{
|
|
|
|
Type = type;
|
|
|
|
DisabledServices = Array.Empty<string>();
|
|
|
|
DisabledMonitorUsers = Array.Empty<string>();
|
|
|
|
SendToUsers = Array.Empty<string>();
|
|
|
|
}
|
|
|
|
|
2020-07-13 16:54:06 +00:00
|
|
|
public NotificationOption()
|
|
|
|
{
|
|
|
|
DisabledServices = Array.Empty<string>();
|
|
|
|
DisabledMonitorUsers = Array.Empty<string>();
|
|
|
|
SendToUsers = Array.Empty<string>();
|
|
|
|
}
|
|
|
|
|
2020-07-17 15:19:06 +00:00
|
|
|
public string? Type { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-07-17 15:19:06 +00:00
|
|
|
/// Gets or sets user Ids to not monitor (it's opt out).
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public string[] DisabledMonitorUsers { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-07-17 15:19:06 +00:00
|
|
|
/// Gets or sets user Ids to send to (if SendToUserMode == Custom).
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public string[] SendToUsers { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets a value indicating whether this <see cref="NotificationOption"/> is enabled.
|
|
|
|
/// </summary>
|
|
|
|
/// <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
|
|
|
|
public bool Enabled { get; set; }
|
2019-01-07 23:27:46 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the disabled services.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The disabled services.</value>
|
|
|
|
public string[] DisabledServices { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the send to user mode.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The send to user mode.</value>
|
|
|
|
public SendToUserType SendToUserMode { get; set; }
|
|
|
|
}
|
2018-12-27 21:43:48 +00:00
|
|
|
}
|