NotificationTypeInfo.cs 637 B

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