dbwizard/Models/School.cs

15 lines
265 B
C#
Raw Normal View History

2020-04-26 23:25:28 -04:00
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; }
2020-04-26 23:25:28 -04:00
}
}