11 lines
297 B
C#
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"
|
|
];
|
|
}
|
|
}
|