mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
16 lines
303 B
C#
16 lines
303 B
C#
|
using System;
|
||
|
|
||
|
namespace Example.ASPBlazor.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; }
|
||
|
}
|
||
|
}
|