dbwizard/Models/School.cs

15 lines
265 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DBWizard.Models
{
public class School
{
public int school_id { get; }
public string name { get; set; }
}
}