2
0

UserNotification.cs 452 B

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