29 lines
No EOL
528 B
C#
29 lines
No EOL
528 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
using ProtoBuf;
|
|
|
|
namespace WingsEmu.DTOs.Items;
|
|
|
|
[ProtoContract]
|
|
public class EquipmentOptionDTO
|
|
{
|
|
[ProtoMember(1)]
|
|
public EquipmentOptionType EquipmentOptionType { get; set; }
|
|
|
|
[ProtoMember(2)]
|
|
public int EffectVnum { get; set; }
|
|
|
|
[ProtoMember(3)]
|
|
public int Level { get; set; }
|
|
|
|
[ProtoMember(4)]
|
|
public byte Type { get; set; }
|
|
|
|
[ProtoMember(5)]
|
|
public int Value { get; set; }
|
|
|
|
[ProtoMember(6)]
|
|
public byte Weight { get; set; }
|
|
} |