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