#pragma warning disable CS1591 #pragma warning disable SA1600 using System.Collections.Generic; namespace Emby.Naming.Video { public class Format3DResult { 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; } } }