GreatHomeChildcare-2/Models/Attendance.cs

23 lines
642 B
C#
Raw Normal View History

2021-01-30 05:15:28 +00:00
namespace GreatHomeChildcare.Models
2021-01-12 06:34:14 +00:00
{
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; }
}
2021-01-12 06:34:14 +00:00
}