BITFALL/Assets/BITKit/Core/Net/Commands/NetCommandExamples.cs

18 lines
234 B
C#
Raw Normal View History

2023-08-23 01:59:40 +08:00
using System;
namespace BITKit.Net.Examples
{
public struct LogTime
{
public Guid Id;
public DateTime CreateTime;
#if NET5_0_OR_GREATER
public LogTime()
{
CreateTime=DateTime.Now;
Id=Guid.NewGuid();
}
#endif
}
}