12 lines
172 B
C#
12 lines
172 B
C#
namespace FreeSR.Proto
|
|
{
|
|
using ProtoBuf;
|
|
|
|
[ProtoContract]
|
|
public class VersionCount
|
|
{
|
|
[ProtoMember(1)] public int Version;
|
|
[ProtoMember(2)] public int Count;
|
|
}
|
|
|
|
}
|