dbwizard/Models/School.cs
2020-04-26 20:25:28 -07:00

15 lines
260 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; }
}
}