Files
aviq-boilerplate/CityInfo.WEB/Models/City.cs
T
2026-03-22 01:10:14 +01:00

11 lines
319 B
C#

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>();
}
}