NotificationTypeInfo.cs 373 B

123456789101112131415161718
  1. #nullable disable
  2. #pragma warning disable CS1591
  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. }
  13. }