mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			534 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			534 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,
 | 
						|
        UserLockedOut
 | 
						|
    }
 | 
						|
}
 |