2014-05-08 13:26:20 -07: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 12:43:35 -07:00
|
|
|
|
public string[] Variables { get; set; }
|
2014-05-08 13:26:20 -07:00
|
|
|
|
|
|
|
|
|
public NotificationTypeInfo()
|
|
|
|
|
{
|
2017-08-19 12:43:35 -07:00
|
|
|
|
Variables = new string[] { };
|
2014-05-08 13:26:20 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|