// File: Models/VetCenterWithCity.cs namespace PostgreSqlDotnetCore.Models { public class Pet_care_appointments { public int id { get; set; } public string user_name { get; set; } public string vet_center_name { get; set; } public string user_lastname { get; set; } public PetsClass PetsClass { get; set; } public string pet_care_title { get; set; } public DateTime starttt_date { get; set; } public DateTime appointment_date { get; set; } } }