NotificationTypeInfo.cs 323 B

123456789101112131415
  1. namespace MediaBrowser.Model.Notifications
  2. {
  3. public class NotificationTypeInfo
  4. {
  5. public string Type { get; set; }
  6. public string Name { get; set; }
  7. public bool Enabled { get; set; }
  8. public string Category { get; set; }
  9. public bool IsBasedOnUserEvent { get; set; }
  10. }
  11. }