StubResult.cs 574 B

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