server-master/srcs/WingsAPI.Data/Account/AccountWarehouseItemDto.cs
2026-02-10 18:21:30 +01:00

17 lines
No EOL
329 B
C#

using ProtoBuf;
using WingsEmu.DTOs.Items;
namespace WingsAPI.Data.Account;
[ProtoContract]
public class AccountWarehouseItemDto
{
[ProtoMember(1)]
public long AccountId { get; set; }
[ProtoMember(2)]
public short Slot { get; set; }
[ProtoMember(3)]
public ItemInstanceDTO ItemInstance { get; set; }
}