Files
Samuele Locatelli 310f304b7e Aggiunta preliminare oggetto IobConf
- testing gestione file conf YAML/JSON
- bozza acquisizione e salvataggio dati conf da IOB sul campo
2022-12-22 18:31:24 +01:00

13 lines
281 B
C#

namespace IobConf.UI.Data
{
public class WeatherForecast
{
public DateTime Date { get; set; }
public int TemperatureC { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
public string? Summary { get; set; }
}
}