Reports class

This commit is contained in:
kougyokugentou 2021-02-05 23:01:12 -08:00
parent b9fae0ef1e
commit 20da3f24e9
1 changed files with 15 additions and 1 deletions

View File

@ -6,9 +6,23 @@ using System.Threading.Tasks;
namespace GreatHomeChildcare.Models
{
class Reports
class ReportScreen
{
public string ChildName { get; set; }
public DateTime in_time { get; set; }
public string GuardianInName { get; set; }
public DateTime out_time { get; set; }
public string GuardianOutName { get; set; }
public string Duration { get; set; }
}
class ReportData
{
public string ChildFirstName { get; set; }
public string ChildLastName { get; set; }
public string in_out { get; set; }
public string GuardianFirstName { get; set; }
public string GuardianLastName { get; set; }
public string timestamp { get; set; }
}
}