26 lines
532 B
C#
26 lines
532 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace data.DAO
|
|||
|
{
|
|||
|
public class Student
|
|||
|
{
|
|||
|
[Key]
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string LastName { get; set; }
|
|||
|
|
|||
|
public string FirstName { get; set; }
|
|||
|
|
|||
|
public string Patronymic { get; set; }
|
|||
|
|
|||
|
public int GroupId { get; set; }
|
|||
|
|
|||
|
public virtual Group Group { get; set; }
|
|||
|
}
|
|||
|
}
|