namespace Emby.Naming.Video
{
///
/// Data class holding information about Stub type rule.
///
public class StubTypeRule
{
///
/// Initializes a new instance of the class.
///
/// Token.
/// Stub type.
public StubTypeRule(string token, string stubType)
{
Token = token;
StubType = stubType;
}
///
/// Gets or sets the token.
///
/// The token.
public string Token { get; set; }
///
/// Gets or sets the type of the stub.
///
/// The type of the stub.
public string StubType { get; set; }
}
}