2025-04-27 09:16:37 +08:00

9 lines
224 B
C#

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