mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			402 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			402 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Jellyfin.Api.Models.ConfigurationDtos;
 | 
						|
 | 
						|
/// <summary>
 | 
						|
/// Media Encoder Path Dto.
 | 
						|
/// </summary>
 | 
						|
public class MediaEncoderPathDto
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets media encoder path.
 | 
						|
    /// </summary>
 | 
						|
    public string Path { get; set; } = null!;
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets media encoder path type.
 | 
						|
    /// </summary>
 | 
						|
    public string PathType { get; set; } = null!;
 | 
						|
}
 |