9 lines
224 B
C#
Raw Normal View History

2025-04-27 09:16:37 +08:00
namespace JiShe.CollectBus.Protocol.Attributes
2024-10-08 14:41:41 +08:00
{
[AttributeUsage(AttributeTargets.Class)]
2024-10-25 19:11:43 +08:00
public class ProtocolNameAttribute(string name) : Attribute
2024-10-08 14:41:41 +08:00
{
2024-10-25 19:11:43 +08:00
public string Name { get; set; } = name;
2024-10-08 14:41:41 +08:00
}
}