aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Notifications/UserNotification.cs
blob: d768abfe73eeea26d35a44fd9d645183acd9da30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma warning disable CS1591

using System;
using Jellyfin.Data.Entities;
using MediaBrowser.Model.Notifications;

namespace MediaBrowser.Controller.Notifications
{
    public class UserNotification
    {
        public string Name { get; set; }

        public string Description { get; set; }

        public string Url { get; set; }

        public NotificationLevel Level { get; set; }

        public DateTime Date { get; set; }

        public User User { get; set; }
    }
}