using System; using System.Collections.Generic; using System.Text; namespace Sunweaver.Commands.Attributes { /// /// An attribute to handle loading base pairs into a command list /// [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)] public class PunctuationAttribute : Attribute { public PunctuationAttribute() { } public PunctuationAttribute(string description) { Description = description; } public string Description { get; private set; } } }