NotificationQuery.cs 283 B

123456789101112131415
  1. using System;
  2. namespace MediaBrowser.Model.Notifications
  3. {
  4. public class NotificationQuery
  5. {
  6. public Guid UserId { get; set; }
  7. public bool? IsRead { get; set; }
  8. public int? StartIndex { get; set; }
  9. public int? Limit { get; set; }
  10. }
  11. }