Format3DResult.cs 1007 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System.Collections.Generic;
  2. namespace Emby.Naming.Video
  3. {
  4. /// <summary>
  5. /// Helper object to return data from <see cref="Format3DParser"/>.
  6. /// </summary>
  7. public class Format3DResult
  8. {
  9. /// <summary>
  10. /// Initializes a new instance of the <see cref="Format3DResult"/> class.
  11. /// </summary>
  12. public Format3DResult()
  13. {
  14. Tokens = new List<string>();
  15. }
  16. /// <summary>
  17. /// Gets or sets a value indicating whether [is3 d].
  18. /// </summary>
  19. /// <value><c>true</c> if [is3 d]; otherwise, <c>false</c>.</value>
  20. public bool Is3D { get; set; }
  21. /// <summary>
  22. /// Gets or sets the format3 d.
  23. /// </summary>
  24. /// <value>The format3 d.</value>
  25. public string? Format3D { get; set; }
  26. /// <summary>
  27. /// Gets or sets the tokens.
  28. /// </summary>
  29. /// <value>The tokens.</value>
  30. public List<string> Tokens { get; set; }
  31. }
  32. }