// File: Models/VetCenterWithCity.cs namespace PostgreSqlDotnetCore.Models { public class VetCenterWithCity { public int id { get; set; } public string vet_center_name { get; set; } public string adress { get; set; } public string city_name { get; set; } // Додајте име на градот public string description { get; set; } public string workinghours { get; set; } public float latitude { get; set; } public float longitude { get; set; } public string phonenumber { get; set; } } }