Notification.cs 549 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. namespace MediaBrowser.Model.Notifications
  3. {
  4. public class Notification
  5. {
  6. public string Id { get; set; }
  7. public string UserId { get; set; }
  8. public DateTime Date { get; set; }
  9. public bool IsRead { get; set; }
  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 Notification()
  15. {
  16. Date = DateTime.UtcNow;
  17. }
  18. }
  19. }