NotificationQuery.cs 271 B

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