18 lines
384 B
C#
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; }
|
|
}
|
|
}
|