GreatHomeChildcare-2/Models/Guardian.cs
2021-01-11 22:34:14 -08:00

20 lines
497 B
C#

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