aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Notifications/UserNotification.cs
blob: a1029589b8ebe3b00042db9ee57120406a8645a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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; }
    }
}