dbwizard/Models/Parent.cs

18 lines
415 B
C#
Raw Normal View History

2020-04-26 23:25:28 -04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DBWizard.Models
{
public class Parent
{
2020-05-07 00:36:59 -04:00
public int parent_id { get; set; }
2020-04-26 23:25:28 -04:00
public string FirstName { get; set; }
public string LastName { get; set; }
public long PhoneNumber { get; set; }
public string EmailAddress { get; set; }
}
}