using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace db___demo__app { public class locations { public int location_id { get; set; } public string streetname { get; set; } public int location_capacity { get; set; } public string location_name { get; set; } public int city_id { get; set; } public int country_id { get; set; } } }