Format3DResult.cs 833 B

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