Files
jellyfin-jellyfin-1/MediaBrowser.Model/Notifications/NotificationQuery.cs

16 lines
283 B
C#
Raw Normal View History

2013-07-06 17:23:32 -04:00
using System;
namespace MediaBrowser.Model.Notifications
{
public class NotificationQuery
{
2013-07-07 01:41:28 -04:00
public Guid 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; }
}
}