adjust firstname and lastname properties of child model to string (oops)

This commit is contained in:
kougyokugentou 2021-01-13 20:12:07 -08:00
parent 2a01029562
commit 0b8f630fc5

View File

@ -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; }