Format3DResult.cs 768 B

12345678910111213141516171819202122232425262728
  1. using System.Collections.Generic;
  2. namespace Emby.Naming.Video
  3. {
  4. public class Format3DResult
  5. {
  6. /// <summary>
  7. /// Gets or sets a value indicating whether [is3 d].
  8. /// </summary>
  9. /// <value><c>true</c> if [is3 d]; otherwise, <c>false</c>.</value>
  10. public bool Is3D { get; set; }
  11. /// <summary>
  12. /// Gets or sets the format3 d.
  13. /// </summary>
  14. /// <value>The format3 d.</value>
  15. public string Format3D { get; set; }
  16. /// <summary>
  17. /// Gets or sets the tokens.
  18. /// </summary>
  19. /// <value>The tokens.</value>
  20. public List<string> Tokens { get; set; }
  21. public Format3DResult()
  22. {
  23. Tokens = new List<string>();
  24. }
  25. }
  26. }