GreatHomeChildcare-2/Models/Attendance.cs

23 lines
642 B
C#
Raw Normal View History

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