using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GreatHomeChildcare.Models { class Guardian { public int id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public long PhoneNumber { get; set; } public string EmailAddress { get; set; } public int PinNumber { get; set; } public int isAdmin { get; set; } } }