server-master/srcs/WingsAPI.Communication/DbServer/WarehouseService/AccountWarehouseGetItemRequest.cs
2026-02-10 18:21:30 +01:00

14 lines
No EOL
297 B
C#

using ProtoBuf;
namespace WingsAPI.Communication.DbServer.WarehouseService
{
[ProtoContract]
public class AccountWarehouseGetItemRequest
{
[ProtoMember(1)]
public long AccountId { get; set; }
[ProtoMember(2)]
public short Slot { get; set; }
}
}