aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Notifications/NotificationQuery.cs
blob: 7e8814d7a68e55a32c8d7c2dec43dd00c2094282 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace MediaBrowser.Model.Notifications
{
    public class NotificationQuery
    {
        public string UserId { get; set; }

        public bool? IsRead { get; set; }

        public int? StartIndex { get; set; }

        public int? Limit { get; set; }
    }
}