db_AI-4/csharp/db - demo -app/db - demo -app/locations.cs

19 lines
466 B
C#
Raw Normal View History

2017-07-15 20:12:14 +02:00
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; }
}
}