namespace MediaBrowser.ServerApplication.FFMpeg
{
    /// 
    /// Class FFMpegInfo
    /// 
    public class FFMpegInfo
    {
        /// 
        /// Gets or sets the path.
        /// 
        /// The path.
        public string Path { get; set; }
        /// 
        /// Gets or sets the probe path.
        /// 
        /// The probe path.
        public string ProbePath { get; set; }
        /// 
        /// Gets or sets the version.
        /// 
        /// The version.
        public string Version { get; set; }
    }
}