StubResult.cs 511 B

1234567891011121314151617
  1. namespace Emby.Naming.Video
  2. {
  3. public struct StubResult
  4. {
  5. /// <summary>
  6. /// Gets or sets a value indicating whether this instance is stub.
  7. /// </summary>
  8. /// <value><c>true</c> if this instance is stub; otherwise, <c>false</c>.</value>
  9. public bool IsStub { get; set; }
  10. /// <summary>
  11. /// Gets or sets the type of the stub.
  12. /// </summary>
  13. /// <value>The type of the stub.</value>
  14. public string StubType { get; set; }
  15. }
  16. }