14 lines
229 B
C#
14 lines
229 B
C#
using System;
|
|
|
|
namespace MsgCenterClient
|
|
{
|
|
public class DataBodyAttribute : Attribute
|
|
{
|
|
public int Order { get; }
|
|
|
|
public DataBodyAttribute(int order)
|
|
{
|
|
Order = order;
|
|
}
|
|
}
|
|
} |