2
0

UserNotification.cs 503 B

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