Adding a Blazor WASM app
This commit is contained in:
@@ -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>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user