GreatHomeChildcare-2/Models/Attendance.cs
2021-01-11 22:34:14 -08:00

18 lines
384 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}