aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Notifications/NotificationTypeInfo.cs
blob: 4c3283d8e94f300319d2ec50e92cab2e5153d0bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System.Collections.Generic;
using System;

namespace MediaBrowser.Model.Notifications
{
    public class NotificationTypeInfo
    {
        public string Type { get; set; }

        public string Name { get; set; }

        public bool Enabled { get; set; }

        public string Category { get; set; }

        public bool IsBasedOnUserEvent { get; set; }

        public string DefaultTitle { get; set; }

        public string DefaultDescription { get; set; }
        
        public string[] Variables { get; set; }

        public NotificationTypeInfo()
        {
            Variables = new string[] {};
        }
    }
}