Update name property to get and set for the school editor.

This commit is contained in:
kougyokugentou 2020-05-19 21:43:14 -07:00
parent 06e167a75f
commit cd0969f53d
1 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,6 @@ namespace DBWizard.Models
public class School public class School
{ {
public int school_id { get; } public int school_id { get; }
public string name { get; } public string name { get; set; }
} }
} }