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