GreatHomeChildcare-2/Models/Attendance.cs
2021-02-05 22:52:02 -08:00

23 lines
642 B
C#

namespace GreatHomeChildcare.Models
{
class Attendance
{
int id { get; set; }
int child_id { get; set; }
int guardian_id { get; set; }
public string in_out { get; set; }
public string timestamp { get; set; }
}
//For the report screen.
class AttendenceSingleInOutData
{
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; }
}
}