12 lines
173 B
C#
12 lines
173 B
C#
namespace FreeSR.Proto
|
|
{
|
|
using ProtoBuf;
|
|
|
|
[ProtoContract]
|
|
public class SpAddSource
|
|
{
|
|
[ProtoMember(1)] public string Source;
|
|
[ProtoMember(2)] public int SpAdd;
|
|
}
|
|
|
|
}
|