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

18 lines
234 B
C#

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
}
}