mirror of
https://github.com/ditkrg/AuthorizationServerDemos.git
synced 2026-01-22 22:47:02 +00:00
16 lines
309 B
C#
16 lines
309 B
C#
using System;
|
|
|
|
namespace OidcSamples.TrafficPoliceApi
|
|
{
|
|
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; }
|
|
}
|
|
}
|