2024-11-03 19:42:19 +04:00
|
|
|
namespace EventVisitorClient
|
2024-11-03 01:20:30 +04:00
|
|
|
{
|
|
|
|
public class WeatherForecast
|
|
|
|
{
|
|
|
|
public DateOnly Date { get; set; }
|
|
|
|
|
|
|
|
public int TemperatureC { get; set; }
|
|
|
|
|
|
|
|
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
|
|
|
|
|
|
|
|
public string? Summary { get; set; }
|
|
|
|
}
|
|
|
|
}
|