GreatHomeChildcare-2/Models/Guardian.cs

22 lines
617 B
C#
Raw Normal View History

2021-01-30 05:17:51 +00:00
namespace GreatHomeChildcare.Models
2021-01-12 06:34:14 +00:00
{
public class Guardian
2021-01-12 06:34:14 +00:00
{
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; }
//readonly property to populate a single guardian's full name.
// this is a "Get" only property
public string DisplayName
{
get =>
$"{LastName}, {FirstName}";
}
2021-01-12 06:34:14 +00:00
}
}