This repository has been archived on 2025-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
2025-02-24 23:03:39 +08:00
|
|
|
using MemoryPack;
|
|
|
|
|
2024-11-03 16:42:23 +08:00
|
|
|
namespace BITKit.Net.Examples
|
|
|
|
{
|
2025-02-24 23:03:39 +08:00
|
|
|
[MemoryPackable]
|
|
|
|
public partial struct NetClientAllocateIdCommand
|
2024-11-03 16:42:23 +08:00
|
|
|
{
|
|
|
|
public int Id;
|
|
|
|
public string Ip;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|