// File: Models/VetCenterWithCity.cs namespace PostgreSqlDotnetCore.Models { public class BlogUsers { public int id { get; set; } public int users_id { get; set; } public string user_name { get; set; } public string user_lastname { get; set; } public string user_email { get; set; } // Додајте име на градот public string consultation_title { get; set; } public string consultation_description { get; set; } public DateOnly consultation_date { get; set; } } }