GreatHomeChildcare-2/Models/Reports.cs

29 lines
813 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GreatHomeChildcare.Models
{
2021-02-06 07:01:12 +00:00
class ReportScreen
{
public string ChildName { get; set; }
2021-02-06 07:01:12 +00:00
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; }
}
2021-02-06 07:01:12 +00:00
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; }
}
}