SubtitleInfo.cs 989 B

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