1
0
Files
CoreProfilerExample/CoreProfilerExample.Common/Constants/WeatherConstant.cs
2024-03-25 16:13:35 +08:00

11 lines
297 B
C#

namespace CoreProfilerExample.Common.Constants
{
public static class WeatherConstant
{
public readonly static string[] WeatherSummaries =
[
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
];
}
}