1
0
portfolio/api/WeatherForecast.fs
2023-06-04 18:32:11 +02:00

12 lines
202 B
Forth

namespace api
open System
type WeatherForecast =
{ Date: DateTime
TemperatureC: int
Summary: string }
member this.TemperatureF =
32.0 + (float this.TemperatureC / 0.5556)