NotificationTypeInfo.cs 341 B

1234567891011121314151617
  1. using System;
  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. }
  12. }