From 51559ce12ba2f510803b7831907fa8d7442bd684 Mon Sep 17 00:00:00 2001 From: kougyokugentou <41278462+kougyokugentou@users.noreply.github.com> Date: Wed, 6 May 2020 21:36:59 -0700 Subject: [PATCH] Change access modifiers on parent_id --- Models/Parent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Models/Parent.cs b/Models/Parent.cs index 9c191a1..317c26c 100644 --- a/Models/Parent.cs +++ b/Models/Parent.cs @@ -8,7 +8,7 @@ namespace DBWizard.Models { public class Parent { - public int parent_id { get; } + public int parent_id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public long PhoneNumber { get; set; }