using System.Collections.Generic;
namespace Emby.Naming.Video
{
    /// 
    /// Helper object to return data from .
    /// 
    public class Format3DResult
    {
        /// 
        /// Initializes a new instance of the  class.
        /// 
        public Format3DResult()
        {
            Tokens = new List();
        }
        /// 
        /// Gets or sets a value indicating whether [is3 d].
        /// 
        /// true if [is3 d]; otherwise, false.
        public bool Is3D { get; set; }
        /// 
        /// Gets or sets the format3 d.
        /// 
        /// The format3 d.
        public string? Format3D { get; set; }
        /// 
        /// Gets or sets the tokens.
        /// 
        /// The tokens.
        public List Tokens { get; set; }
    }
}