19 lines
435 B
C#
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; }
|
|
}
|
|
}
|