Files
juipnet/Infrastructure/ServiceClient/MsgCenterClient/DataBodyAttribute.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

14 lines
229 B
C#

using System;
namespace MsgCenterClient
{
public class DataBodyAttribute : Attribute
{
public int Order { get; }
public DataBodyAttribute(int order)
{
Order = order;
}
}
}