SubtitleInfo.cs 923 B

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