NotificationTypeInfo.cs 630 B

12345678910111213141516171819202122232425262728
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Notifications
  3. {
  4. public class NotificationTypeInfo
  5. {
  6. public string Type { get; set; }
  7. public string Name { get; set; }
  8. public bool Enabled { get; set; }
  9. public string Category { get; set; }
  10. public bool IsBasedOnUserEvent { get; set; }
  11. public string DefaultTitle { get; set; }
  12. public string DefaultDescription { get; set; }
  13. public List<string> Variables { get; set; }
  14. public NotificationTypeInfo()
  15. {
  16. Variables = new List<string>();
  17. }
  18. }
  19. }