2023-11-21 20:37:50 +00:00
|
|
|
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
2023-11-20 18:58:30 +00:00
|
|
|
|
2023-11-16 20:01:55 +00:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2024-01-29 07:39:18 +00:00
|
|
|
namespace Continuity.AuthServer.PacketHandlers;
|
2023-11-16 20:01:55 +00:00
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Auto)]
|
|
|
|
public struct CharacterMappingItemEntry
|
|
|
|
{
|
|
|
|
public required ushort Id { get; set; }
|
|
|
|
public required ushort Quantity { get; set; }
|
|
|
|
}
|