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

19 lines
442 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace data.DAO
{
public class Student
{
public int Id { get; set; }
public string Name { get; set; }
public int GroupId { get; set; }
public Group Group { get; set; }
public ICollection<Attendance> Attendances { get; set; }
}
}