13 lines
204 B
C#
13 lines
204 B
C#
namespace FreeSR.Proto
|
|
{
|
|
using ProtoBuf;
|
|
|
|
[ProtoContract]
|
|
public class RelicAffix
|
|
{
|
|
[ProtoMember(1)] public int AffixId;
|
|
[ProtoMember(2)] public int Cnt;
|
|
[ProtoMember(3)] public int Step;
|
|
}
|
|
|
|
}
|