forked from Moux23333/FreeSR
13 lines
190 B
C#
13 lines
190 B
C#
|
namespace FreeSR.Proto
|
||
|
{
|
||
|
using ProtoBuf;
|
||
|
|
||
|
[ProtoContract]
|
||
|
public class SavePointsInfoNotify
|
||
|
{
|
||
|
[ProtoMember(2)] public int RefreshTime;
|
||
|
[ProtoMember(10)] public int ValidTimes;
|
||
|
}
|
||
|
|
||
|
}
|