mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			585 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			585 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MediaBrowser.Common.Configuration;
 | |
| using MediaBrowser.Model.Notifications;
 | |
| using System.Collections.Generic;
 | |
| 
 | |
| namespace Emby.Notifications
 | |
| {
 | |
|     public class NotificationConfigurationFactory : IConfigurationFactory
 | |
|     {
 | |
|         public IEnumerable<ConfigurationStore> GetConfigurations()
 | |
|         {
 | |
|             return new ConfigurationStore[]
 | |
|             {
 | |
|                 new ConfigurationStore
 | |
|                 {
 | |
|                     Key = "notifications",
 | |
|                     ConfigurationType = typeof (NotificationOptions)
 | |
|                 }
 | |
|             };
 | |
|         }
 | |
|     }
 | |
| }
 |