Notification.cs 462 B

1234567891011121314151617181920212223
  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. }
  15. }