namespace PostgreSqlDotnetCore.Models { using System.ComponentModel.DataAnnotations; public class PetDetailsProcedure { [Key] public int pet_id { get; set; } public string pet_name { get; set; } public string diagnosis_description { get; set; } public string medicine_name { get; set; } public string medicine_description { get; set; } public string therapy_description { get; set; } public DateTime therapy_date { get; set; } } }