2019-12-13 12:11:37 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
namespace Emby.Naming.Video
|
|
|
|
{
|
2019-01-18 12:40:08 -07:00
|
|
|
public struct StubResult
|
2018-09-12 10:26:21 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets a value indicating whether this instance is stub.
|
|
|
|
/// </summary>
|
|
|
|
/// <value><c>true</c> if this instance is stub; otherwise, <c>false</c>.</value>
|
|
|
|
public bool IsStub { get; set; }
|
2019-05-10 11:37:42 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the type of the stub.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The type of the stub.</value>
|
|
|
|
public string StubType { get; set; }
|
|
|
|
}
|
|
|
|
}
|