From 53450bd514eec97d58eb18b8a01feab36475826b Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 6 Jul 2013 17:23:32 -0400 Subject: added a notifications service --- MediaBrowser.Model/Notifications/NotificationQuery.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 MediaBrowser.Model/Notifications/NotificationQuery.cs (limited to 'MediaBrowser.Model/Notifications/NotificationQuery.cs') diff --git a/MediaBrowser.Model/Notifications/NotificationQuery.cs b/MediaBrowser.Model/Notifications/NotificationQuery.cs new file mode 100644 index 000000000..39a7326a6 --- /dev/null +++ b/MediaBrowser.Model/Notifications/NotificationQuery.cs @@ -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; } + } +} -- cgit v1.2.3