jellyfin/MediaBrowser.Model/Notifications/NotificationQuery.cs

15 lines
271 B
C#
Raw Normal View History


2013-07-06 23:23:32 +02:00
namespace MediaBrowser.Model.Notifications
{
public class NotificationQuery
{
public string UserId { get; set; }
2013-07-06 23:23:32 +02:00
public bool? IsRead { get; set; }
public int? StartIndex { get; set; }
public int? Limit { get; set; }
}
}