forked from Moux23333/FreeSR
15 lines
247 B
C#
15 lines
247 B
C#
|
namespace FreeSR.Proto
|
||
|
{
|
||
|
using ProtoBuf;
|
||
|
|
||
|
[ProtoContract]
|
||
|
public class BattleEquipment
|
||
|
{
|
||
|
[ProtoMember(1)] public int Id;
|
||
|
[ProtoMember(2)] public int Level;
|
||
|
[ProtoMember(3)] public int Promotion;
|
||
|
[ProtoMember(4)] public int Rank;
|
||
|
}
|
||
|
|
||
|
}
|