Add full report data model.

This commit is contained in:
kougyokugentou 2020-05-14 14:33:29 -07:00
parent c0fa374670
commit f1bb12e590
1 changed files with 26 additions and 0 deletions

26
Models/ReportFull.cs Normal file
View File

@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DBWizard.Models
{
class ReportFull
{
public int id { get; set; }
public string student_id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string DOB { get; set; }
public string gender { get; set; }
public string address { get; set; }
public string ProgramName { get; set; }
public string SchoolName { get; set; }
public string GradeLevel { get; set; }
public string ParentFirstName { get; set; }
public string ParentLastName { get; set; }
public string ParentPhoneNumber { get; set; }
public string ParentEmailAddress { get; set; }
}
}