Iceshrimp.NET/Iceshrimp.Backend/Core/Extensions/TimeSpanExtensions.cs

6 lines
No EOL
201 B
C#

namespace Iceshrimp.Backend.Core.Extensions;
public static class TimeSpanExtensions
{
public static long GetTotalMilliseconds(this TimeSpan timeSpan) => Convert.ToInt64(timeSpan.TotalMilliseconds);
}