using System; using System.Collections.Generic; using System.Text; namespace JiShe.CollectBus.Protocol.Contracts.Attributes { [AttributeUsage(AttributeTargets.Class)] public class ProtocolNameAttribute: Attribute { public ProtocolNameAttribute(string name) { Name = name; } public string Name { get; set; } } }