AspNetCore.Docs.Samples/mvc/models/BindTryParseAPI/Models/WeatherForecastViewModel.cs

14 lines
273 B
C#
Raw Permalink Normal View History

namespace BindTryParseAPI.Models
{
public class WeatherForecastViewModel
{
public string? Date { get; set; }
public int TemperatureC { get; set; }
public int TemperatureF { get; set; }
public string? Summary { get; set; }
}
}