using System.Collections.Generic;
namespace Emby.Naming.Video
{
public class Format3DResult
{
///
/// 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; }
public Format3DResult()
{
Tokens = new List();
}
}
}