Innovenergy_trunk/csharp/lib/Time/Unix/UnixTimeSpan.cs

11 lines
204 B
C#
Raw Normal View History

2023-02-16 12:57:06 +00:00
namespace InnovEnergy.Time.Unix;
public readonly partial struct UnixTimeSpan
{
public UInt32 Ticks { get; }
public TimeSpan ToTimeSpan()
{
return TimeSpan.FromSeconds(Ticks);
}
}