CourseWork_EventVisitor/EventVisitor/EventVisitorClient/WeatherForecast.cs

14 lines
252 B
C#
Raw Normal View History

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; }
}
}