13 lines
165 B
C#
13 lines
165 B
C#
using MemoryPack;
|
|
|
|
namespace BITKit.Net.Examples
|
|
{
|
|
[MemoryPackable]
|
|
public partial struct NetClientAllocateIdCommand
|
|
{
|
|
public int Id;
|
|
public string Ip;
|
|
}
|
|
}
|
|
|