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

14 lines
229 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System;
namespace MsgCenterClient
{
public class DataBodyAttribute : Attribute
{
public int Order { get; }
public DataBodyAttribute(int order)
{
Order = order;
}
}
}