mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	* Add analyzers to MediaBrowser.XbmcMetadata * Enable TreatWarningsAsErrors for MediaBrowser.XbmcMetadata * Add analyzers to MediaBrowser.WebDashboard * Enable TreatWarningsAsErrors for MediaBrowser.WebDashboard * Disable SA1600 in favor of CS1591
		
			
				
	
	
		
			25 lines
		
	
	
		
			563 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			563 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#pragma warning disable CS1591
 | 
						|
 | 
						|
namespace MediaBrowser.Model.Notifications
 | 
						|
{
 | 
						|
    public enum NotificationType
 | 
						|
    {
 | 
						|
        ApplicationUpdateAvailable,
 | 
						|
        ApplicationUpdateInstalled,
 | 
						|
        AudioPlayback,
 | 
						|
        VideoPlayback,
 | 
						|
        AudioPlaybackStopped,
 | 
						|
        VideoPlaybackStopped,
 | 
						|
        InstallationFailed,
 | 
						|
        PluginError,
 | 
						|
        PluginInstalled,
 | 
						|
        PluginUpdateInstalled,
 | 
						|
        PluginUninstalled,
 | 
						|
        NewLibraryContent,
 | 
						|
        ServerRestartRequired,
 | 
						|
        TaskFailed,
 | 
						|
        CameraImageUploaded,
 | 
						|
        UserLockedOut
 | 
						|
    }
 | 
						|
}
 |