Files
juipnet/Infrastructure/ServiceClient/MsgCenterClient/DataBodyAttribute.cs
“wanyongkang” 40a40b6d36 忽略
2020-12-28 14:55:48 +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;
}
}
}