forked from Moux23333/FreeSR
15 lines
254 B
C#
15 lines
254 B
C#
|
namespace FreeSR.Proto
|
||
|
{
|
||
|
using ProtoBuf;
|
||
|
|
||
|
[ProtoContract]
|
||
|
public class BlackInfo
|
||
|
{
|
||
|
[ProtoMember(1)] public int BeginTime;
|
||
|
[ProtoMember(2)] public int EndTime;
|
||
|
[ProtoMember(3)] public int LimitLevel;
|
||
|
[ProtoMember(4)] public int BanType;
|
||
|
}
|
||
|
|
||
|
}
|