namespace PostgreSqlDotnetCore.Models { using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; public class PetCareAllData { public List PetCares { get; set; } public List VetCenters { get; set; } public List Users { get; set; } public PetCareAllData() { Users = new List(); VetCenters = new List(); PetCares = new List(); } } }