mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 07:45:26 +03:00
Add GPL modules
This commit is contained in:
29
MediaBrowser.Model/Notifications/NotificationTypeInfo.cs
Normal file
29
MediaBrowser.Model/Notifications/NotificationTypeInfo.cs
Normal file
@@ -0,0 +1,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[] {};
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user