13 lines
283 B
C#
13 lines
283 B
C#
using System;
|
|
|
|
namespace Oqtane.Client.Modules.Weather
|
|
{
|
|
public class WeatherForecast
|
|
{
|
|
public DateTime Date { get; set; }
|
|
public int TemperatureC { get; set; }
|
|
public int TemperatureF { get; set; }
|
|
public string Summary { get; set; }
|
|
}
|
|
}
|