using System; namespace VisualTraceRoute.Text { /// /// Parser token attribute class. /// [AttributeUsage(AttributeTargets.Property, AllowMultiple = true, Inherited = false)] public class ParserToken : Attribute { /// /// Gets or sets the token string. /// public string Token { get; set; } /// /// Initializes a new instance of the ParserToken class. /// public ParserToken() { this.Token = string.Empty; } } }