Format3DResult.cs 770 B

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