- Solution with API, Application, Domain, Infrastructure projects - Clean Architecture project references configured - Vue 3 + Vuetify 3 + TypeScript frontend scaffolded Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 lines
251 B
C#
13 lines
251 B
C#
namespace ClaudeTest.API;
|
|
|
|
public class WeatherForecast
|
|
{
|
|
public DateOnly Date { get; set; }
|
|
|
|
public int TemperatureC { get; set; }
|
|
|
|
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
|
|
|
|
public string? Summary { get; set; }
|
|
}
|