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

10 lines
224 B
C#

namespace CityInfo.WEB.Models
{
public class PointOfInterest
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string? Description { get; set; }
}
}