presence_sample/data/DAO/Attendance.cs
2024-11-20 16:09:09 +03:00

19 lines
435 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace data.DAO
{
public class Attendance
{
public int Id { get; set; }
public int StudentId { get; set; }
public Student Student { get; set; }
public int LessonId { get; set; }
public Lesson Lesson { get; set; }
public string Status { get; set; }
}
}