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