mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
WIP on notification resolver
This commit is contained in:
parent
ecf025d95b
commit
d7f01dcbb5
6 changed files with 276 additions and 216 deletions
|
@ -32,7 +32,20 @@ namespace PlexRequests.Core.SettingModels
|
|||
{
|
||||
public class NotificationSettings : Settings
|
||||
{
|
||||
public NotificationSettings()
|
||||
{
|
||||
CustomParamaters = new Dictionary<string, string>
|
||||
{
|
||||
{"Username", string.Empty },
|
||||
{"Date", string.Empty },
|
||||
{"Title", string.Empty },
|
||||
{"RequestType", string.Empty },
|
||||
{"Issue", string.Empty },
|
||||
|
||||
};
|
||||
}
|
||||
public Dictionary<NotificationType, string> Message { get; set; }
|
||||
public Dictionary<NotificationType, string> Subject { get; set; }
|
||||
public Dictionary<string,string> CustomParamaters { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue