Files
FreeSR/FreeSR.Proto/SpAddSource.cs
2024-01-27 21:06:07 +08:00

13 lines
173 B
C#

namespace FreeSR.Proto
{
using ProtoBuf;
[ProtoContract]
public class SpAddSource
{
[ProtoMember(1)] public string Source;
[ProtoMember(2)] public int SpAdd;
}
}