Adding a Blazor WASM app

This commit is contained in:
2026-03-22 01:10:14 +01:00
parent ce04cd8d77
commit c86c989cb5
81 changed files with 87512 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace CityInfo.WEB.Models
{
public class City
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string? Description { get; set; }
public IEnumerable<PointOfInterest> PointsOfInterest { get; set; } = new List<PointOfInterest>();
}
}
+9
View File
@@ -0,0 +1,9 @@
namespace CityInfo.WEB.Models
{
public class PointOfInterest
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string? Description { get; set; }
}
}