add more notifications

This commit is contained in:
Luke Pulverenti
2014-04-25 22:55:07 -04:00
parent 28f5a9ac75
commit c40d3f3494
31 changed files with 794 additions and 214 deletions

View File

@@ -323,16 +323,18 @@ namespace MediaBrowser.Model.Configuration
public class NotificationOptions
{
public bool SendOnUpdates { get; set; }
public bool SendOnPlayback { get; set; }
public bool SendOnVideoPlayback { get; set; }
public bool SendOnAudioPlayback { get; set; }
public bool SendOnGamePlayback { get; set; }
public bool SendOnFailedTasks { get; set; }
public bool SendOnNewLibraryContent { get; set; }
public bool SendOnServerRestartRequired { get; set; }
public NotificationOptions()
{
SendOnUpdates = true;
SendOnPlayback = true;
SendOnFailedTasks = true;
SendOnNewLibraryContent = true;
SendOnServerRestartRequired = true;
}
}
}