mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-09-01 03:30:06 +00:00
added a notifications service
This commit is contained in:
parent
b3054a6a22
commit
53450bd514
36 changed files with 1368 additions and 114 deletions
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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue