added SurveyBackend solution (just default template for now)

This commit is contained in:
Вячеслав 2025-03-12 00:40:58 +05:00
parent 30e688b082
commit 267ca26671
8 changed files with 157 additions and 0 deletions

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