presence_sample/data/DAO/Attendance.cs

19 lines
435 B
C#
Raw Permalink Normal View History

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; }
}
}