From 0b8f630fc50cfb58aa86199626907878792ce430 Mon Sep 17 00:00:00 2001 From: kougyokugentou <41278462+kougyokugentou@users.noreply.github.com> Date: Wed, 13 Jan 2021 20:12:07 -0800 Subject: [PATCH] adjust firstname and lastname properties of child model to string (oops) --- Models/Child.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Models/Child.cs b/Models/Child.cs index c7450c7..8235f02 100644 --- a/Models/Child.cs +++ b/Models/Child.cs @@ -9,8 +9,8 @@ namespace GreatHomeChildcare.Models public class Child { public int id { get; set; } - public int FirstName { get; set; } - public int LastName { get; set; } + public string FirstName { get; set; } + public string LastName { get; set; } public string DOB { get; set; } public string address { get; set; } public string race { get; set; }