WIP on notification resolver

This commit is contained in:
tidusjar 2016-07-05 17:29:42 +01:00
parent ecf025d95b
commit d7f01dcbb5
6 changed files with 276 additions and 216 deletions

View file

@ -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; }
}
}