jellyfin/MediaBrowser.Model/Notifications/NotificationQuery.cs

16 lines
284 B
C#
Raw Normal View History

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