presence_sample/data/DAO/Student.cs

19 lines
442 B
C#
Raw Permalink Normal View History

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