added SurveyBackend solution (just default template for now)
This commit is contained in:
parent
30e688b082
commit
267ca26671
8 changed files with 157 additions and 0 deletions
12
SurveyBackend/SurveyBackend/WeatherForecast.cs
Normal file
12
SurveyBackend/SurveyBackend/WeatherForecast.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
namespace SurveyBackend;
|
||||
|
||||
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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue