13 lines
No EOL
289 B
C#
13 lines
No EOL
289 B
C#
using WingsAPI.Data.Account;
|
|
|
|
namespace DatabaseServer.Managers
|
|
{
|
|
public class MoveWarehouseItemResult
|
|
{
|
|
public bool Success { get; init; }
|
|
|
|
public AccountWarehouseItemDto OldItem { get; init; }
|
|
|
|
public AccountWarehouseItemDto NewItem { get; init; }
|
|
}
|
|
} |