server-master/srcs/DatabaseServer/Managers/WithdrawWarehouseItemResult.cs
2026-02-10 18:21:30 +01:00

14 lines
No EOL
322 B
C#

using WingsAPI.Data.Account;
using WingsEmu.DTOs.Items;
namespace DatabaseServer.Managers
{
public class WithdrawWarehouseItemResult
{
public bool Success { get; init; }
public AccountWarehouseItemDto UpdatedItem { get; init; }
public ItemInstanceDTO WithdrawnItem { get; init; }
}
}