Files
juipnet/Infrastructure/ServiceClient/MsgCenterClient/DataBodyAttribute.cs

14 lines
242 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
namespace MsgCenterClient
{
public class DataBodyAttribute : Attribute
{
public int Order { get; }
public DataBodyAttribute(int order)
{
Order = order;
}
}
}