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