aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Notifications/NotificationTypeInfo.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-08-19 18:42:31 -0400
committerGitHub <noreply@github.com>2017-08-19 18:42:31 -0400
commit1c494519c10f7aad08783c28348f6872023126d5 (patch)
tree5aef83c994b7074b6889f601c4af46f3a686502d /MediaBrowser.Model/Notifications/NotificationTypeInfo.cs
parentc58db90c950c766321615eca236557d87b8d1b74 (diff)
parenta02968c568c97da544b239014506a03ecca35c09 (diff)
Merge pull request #2833 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Model/Notifications/NotificationTypeInfo.cs')
-rw-r--r--MediaBrowser.Model/Notifications/NotificationTypeInfo.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Notifications/NotificationTypeInfo.cs b/MediaBrowser.Model/Notifications/NotificationTypeInfo.cs
index 59b39fbc7..ee5101011 100644
--- a/MediaBrowser.Model/Notifications/NotificationTypeInfo.cs
+++ b/MediaBrowser.Model/Notifications/NotificationTypeInfo.cs
@@ -18,11 +18,11 @@ namespace MediaBrowser.Model.Notifications
public string DefaultDescription { get; set; }
- public List<string> Variables { get; set; }
+ public string[] Variables { get; set; }
public NotificationTypeInfo()
{
- Variables = new List<string>();
+ Variables = new string[] { };
}
}
} \ No newline at end of file