namespace MediaBrowser.Model.Configuration
{
    /// 
    /// An enum representing the options to disable embedded subs.
    /// 
    public enum EmbeddedSubtitleOptions
    {
        /// 
        /// Allow all embedded subs.
        /// 
        AllowAll = 0,
        /// 
        /// Allow only embedded subs that are text based.
        /// 
        AllowText = 1,
        /// 
        /// Allow only embedded subs that are image based.
        /// 
        AllowImage = 2,
        /// 
        /// Disable all embedded subs.
        /// 
        AllowNone = 3,
    }
}