#pragma warning disable CS1591
namespace Emby.Naming.Video
{
public struct StubResult
{
///
/// Gets or sets a value indicating whether this instance is stub.
///
/// true if this instance is stub; otherwise, false.
public bool IsStub { get; set; }
///
/// Gets or sets the type of the stub.
///
/// The type of the stub.
public string StubType { get; set; }
}
}