mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 10:09:24 +00:00
13 lines
276 B
C#
13 lines
276 B
C#
using System;
|
|
|
|
namespace Oqtane.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; }
|
|
}
|
|
}
|