namespace Jellyfin.Api.Models.ConfigurationDtos
{
    /// 
    /// Media Encoder Path Dto.
    /// 
    public class MediaEncoderPathDto
    {
        /// 
        /// Gets or sets media encoder path.
        /// 
        public string Path { get; set; } = null!;
        /// 
        /// Gets or sets media encoder path type.
        /// 
        public string PathType { get; set; } = null!;
    }
}