jellyfin/MediaBrowser.Model/Notifications/NotificationQuery.cs
Luke Pulverenti 16b58256c4 updated nuget
2013-07-07 01:41:28 -04:00

16 lines
283 B
C#

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; }
}
}