11 lines
249 B
C#
11 lines
249 B
C#
using System;
|
|
|
|
namespace JiShe.CollectBus.Protocol.Contracts.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class ProtocolNameAttribute(string name) : Attribute
|
|
{
|
|
public string Name { get; set; } = name;
|
|
}
|
|
}
|