2
0

UserNotification.cs 484 B

1234567891011121314151617181920212223
  1. #pragma warning disable CS1591
  2. using System;
  3. using Jellyfin.Data.Entities;
  4. using MediaBrowser.Model.Notifications;
  5. namespace MediaBrowser.Controller.Notifications
  6. {
  7. public class UserNotification
  8. {
  9. public string Name { get; set; }
  10. public string Description { get; set; }
  11. public string Url { get; set; }
  12. public NotificationLevel Level { get; set; }
  13. public DateTime Date { get; set; }
  14. public User User { get; set; }
  15. }
  16. }