namespace InnovEnergy.Lib.Time.Unix; public readonly partial struct UnixTime : IComparable, IEquatable { Int32 IComparable.CompareTo(UnixTime other) => Ticks.CompareTo(other.Ticks); Boolean IEquatable.Equals(UnixTime other) => Ticks == other.Ticks; }