BITKit/Src/Core/Net/Commands/NetClientAllocateIdCommand.cs

13 lines
165 B
C#
Raw Normal View History

2025-01-23 11:39:53 +08:00
using MemoryPack;
2023-08-23 01:59:26 +08:00
namespace BITKit.Net.Examples
{
2025-01-23 11:39:53 +08:00
[MemoryPackable]
public partial struct NetClientAllocateIdCommand
2023-08-23 01:59:26 +08:00
{
public int Id;
public string Ip;
}
}