GreatHomeChildcare-2/Models/Attendance.cs

18 lines
384 B
C#
Raw Normal View History

2021-01-12 06:34:14 +00:00
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; }
}
}