11 lines
204 B
C#
11 lines
204 B
C#
|
namespace InnovEnergy.Time.Unix;
|
||
|
|
||
|
public readonly partial struct UnixTimeSpan
|
||
|
{
|
||
|
public UInt32 Ticks { get; }
|
||
|
|
||
|
public TimeSpan ToTimeSpan()
|
||
|
{
|
||
|
return TimeSpan.FromSeconds(Ticks);
|
||
|
}
|
||
|
}
|