11 lines
249 B
C#
Raw Normal View History

2024-10-08 14:41:41 +08:00
using System;
namespace JiShe.CollectBus.Protocol.Contracts.Attributes
{
[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
}
}