mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			489 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			489 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace MediaBrowser.Model.Devices
 | 
						|
{
 | 
						|
    public class DevicesOptions
 | 
						|
    {
 | 
						|
        public string[] EnabledCameraUploadDevices { get; set; }
 | 
						|
        public string CameraUploadPath { get; set; }
 | 
						|
        public bool EnableCameraUploadSubfolders { get; set; }
 | 
						|
 | 
						|
        public DevicesOptions()
 | 
						|
        {
 | 
						|
            EnabledCameraUploadDevices = Array.Empty<string>();
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public class DeviceOptions
 | 
						|
    {
 | 
						|
        public string CustomName { get; set; }
 | 
						|
    }
 | 
						|
}
 |