SubtitleInfo.cs 958 B

12345678910111213141516171819202122232425262728293031
  1. #pragma warning disable CS1591
  2. namespace Emby.Naming.Subtitles
  3. {
  4. public class SubtitleInfo
  5. {
  6. /// <summary>
  7. /// Gets or sets the path.
  8. /// </summary>
  9. /// <value>The path.</value>
  10. public string Path { get; set; }
  11. /// <summary>
  12. /// Gets or sets the language.
  13. /// </summary>
  14. /// <value>The language.</value>
  15. public string Language { get; set; }
  16. /// <summary>
  17. /// Gets or sets a value indicating whether this instance is default.
  18. /// </summary>
  19. /// <value><c>true</c> if this instance is default; otherwise, <c>false</c>.</value>
  20. public bool IsDefault { get; set; }
  21. /// <summary>
  22. /// Gets or sets a value indicating whether this instance is forced.
  23. /// </summary>
  24. /// <value><c>true</c> if this instance is forced; otherwise, <c>false</c>.</value>
  25. public bool IsForced { get; set; }
  26. }
  27. }