mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 08:45:23 +03:00
added a notifications service
This commit is contained in:
15
MediaBrowser.Model/Notifications/NotificationQuery.cs
Normal file
15
MediaBrowser.Model/Notifications/NotificationQuery.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user