namespace Emby.Naming.Video { /// /// Helper object to return data from . /// public class Format3DResult { /// /// Initializes a new instance of the class. /// /// A value indicating whether the parsed string contains 3D tokens. /// The 3D format. Value might be null if [is3D] is false. public Format3DResult(bool is3D, string? format3D) { Is3D = is3D; Format3D = format3D; } /// /// Gets a value indicating whether [is3 d]. /// /// true if [is3 d]; otherwise, false. public bool Is3D { get; } /// /// Gets the format3 d. /// /// The format3 d. public string? Format3D { get; } } }