using System.Collections.Generic;
namespace Emby.Naming.Video
{
public class 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; }
///
/// Gets or sets the tokens.
///
/// The tokens.
public List Tokens { get; set; }
public StubResult()
{
Tokens = new List();
}
}
}