Update NotificationOption.cs

Fixes serialisation bug
pull/3552/head
BaronGreenback 4 years ago committed by GitHub
parent 46f67c9ea4
commit 12478c7196
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,6 +15,14 @@ namespace MediaBrowser.Model.Notifications
SendToUsers = Array.Empty<string>();
}
public NotificationOption()
{
Type = string.Empty;
DisabledServices = Array.Empty<string>();
DisabledMonitorUsers = Array.Empty<string>();
SendToUsers = Array.Empty<string>();
}
public string Type { get; set; }
/// <summary>

Loading…
Cancel
Save