router, spa

This commit is contained in:
2023-08-24 15:44:37 +09:00
parent e5b4984515
commit f5ef647975
37 changed files with 1417 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
namespace BlazorServerApp.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; }
}
}