18 lines
410 B
C#
18 lines
410 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DBWizard.Models
|
|
{
|
|
public class Parent
|
|
{
|
|
public int parent_id { get; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public long PhoneNumber { get; set; }
|
|
public string EmailAddress { get; set; }
|
|
}
|
|
}
|