From 42c56505e5fe11acd47148c9b563a00380e66237 Mon Sep 17 00:00:00 2001 From: kougyokugentou <41278462+kougyokugentou@users.noreply.github.com> Date: Wed, 6 May 2020 21:36:49 -0700 Subject: [PATCH] Change access modifiers on id --- Models/Student.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Models/Student.cs b/Models/Student.cs index 0dd6919..2164c06 100644 --- a/Models/Student.cs +++ b/Models/Student.cs @@ -8,7 +8,7 @@ namespace DBWizard.Models { public class Student { - public int id { get; } + public int id { get; set; } public string student_id { get; set; } public int parent_id { get; set; } public string FirstName { get; set; }