Initial project setup: solution + 5 projects

- Domain, Infrastructure, Application (class libraries)
- Web (ASP.NET Core empty)
- Admin (Blazor Server)
- All net8.0 target framework
- Project references configured

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-06-26 14:51:00 +09:00
commit 6dff8e7777
47 changed files with 2704 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace TaxBaik.Admin.Data;
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; }
}