#pragma warning disable CS1591 namespace Emby.Naming.Video { public class StubTypeRule { 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; } } }