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