Before Rebuild NetProvider
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
using MemoryPack;
|
||||
|
||||
namespace BITKit.Net.Examples
|
||||
{
|
||||
public struct NetClientPingCommand
|
||||
[MemoryPackable]
|
||||
public partial struct NetClientPingCommand
|
||||
{
|
||||
public int Ping;
|
||||
}
|
||||
|
@@ -1,9 +1,13 @@
|
||||
using System;
|
||||
using System.Data;
|
||||
using System.Runtime.InteropServices;
|
||||
using MemoryPack;
|
||||
|
||||
namespace BITKit.Net.Examples
|
||||
{
|
||||
public struct LogTime
|
||||
[MemoryPackable]
|
||||
[StructLayout(LayoutKind.Auto)]
|
||||
public partial struct LogTime
|
||||
{
|
||||
public Guid Id;
|
||||
public DateTime CreateTime;
|
||||
@@ -15,7 +19,9 @@ namespace BITKit.Net.Examples
|
||||
}
|
||||
#endif
|
||||
}
|
||||
public struct SimplePing
|
||||
[MemoryPackable]
|
||||
[StructLayout(LayoutKind.Auto)]
|
||||
public partial struct SimplePing
|
||||
{
|
||||
public DateTime StartTime;
|
||||
public DateTime EndTime;
|
||||
|
Reference in New Issue
Block a user