mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			478 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			478 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace MediaBrowser.Model.Devices
 | 
						|
{
 | 
						|
    public class DeviceOptions
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the name of the custom.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The name of the custom.</value>
 | 
						|
        public string CustomName { get; set; }
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the camera upload path.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The camera upload path.</value>
 | 
						|
        public string CameraUploadPath { get; set; }
 | 
						|
    }
 | 
						|
}
 |