mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-23 07:20:53 -04:00
16 lines
284 B
C#
16 lines
284 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; }
|
|
}
|
|
}
|