This commit is contained in:
2026-06-04 11:12:23 -04:00
parent 6e58c63082
commit 377a041afa
73 changed files with 7689 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace IGP.Utils;
public static class Interval
{
public static string ToTime(int interval)
{
return TimeSpan.FromSeconds(interval).ToString(@"mm\:ss");
}
}