File: Data\WeatherForecast.cs | Web Access |
Project: src\src\Components\Samples\BlazorUnitedApp\BlazorUnitedApp.csproj (BlazorUnitedApp) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace BlazorUnitedApp.Data; 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; } } |