jellyfin/MediaBrowser.Model/Notifications/NotificationQuery.cs
2013-07-15 21:33:47 -04:00

15 lines
271 B
C#

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; }
}
}