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