2024-02-07 15:40:36 +00:00
|
|
|
// Licensed to Timothy Schenk under 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; }
|
|
|
|
}
|