Format3DResult.cs 802 B

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