1
0
mirror of synced 2024-12-18 17:25:54 +01:00
GC-local-server-rewrite/Application/Common/Helpers/TimeHelper.cs
2023-02-16 15:26:13 +08:00

14 lines
315 B
C#

namespace Application.Common.Helpers;
public static class TimeHelper
{
public static string CurrentTimeToString()
{
return DateTime.Now.ToString("yyyy/MM/dd hh:mm:ss");
}
public static string DateToString(DateTime time)
{
return time.ToString("yyyy/MM/dd hh:mm:ss");
}
}