2014-05-08 20:26:20 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Notifications
|
|
|
|
|
{
|
|
|
|
|
public class NotificationTypeInfo
|
|
|
|
|
{
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool Enabled { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Category { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsBasedOnUserEvent { get; set; }
|
|
|
|
|
|
|
|
|
|
public string DefaultTitle { get; set; }
|
|
|
|
|
|
|
|
|
|
public string DefaultDescription { get; set; }
|
|
|
|
|
|
2017-08-19 19:43:35 +00:00
|
|
|
|
public string[] Variables { get; set; }
|
2014-05-08 20:26:20 +00:00
|
|
|
|
|
|
|
|
|
public NotificationTypeInfo()
|
|
|
|
|
{
|
2017-08-19 19:43:35 +00:00
|
|
|
|
Variables = new string[] { };
|
2014-05-08 20:26:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|