Files
aviq-boilerplate/CityInfo.API/Models/CityDto.cs
2026-03-20 23:52:10 +01:00

17 lines
479 B
C#

namespace CityInfo.API.Models
{
public class CityDto
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string? Description { get; set; }
public int NumberOfPointsOfInterest {
get
{
return PointsOfInterest.Count;
}
}
public ICollection<PointOfInterestDto> PointsOfInterest { get; set; } = new List<PointOfInterestDto>();
}
}