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