kursovaya/Models/Student.cs

22 lines
522 B
C#
Raw Normal View History

2025-04-11 10:14:28 +00:00
using System;
using System.Collections.Generic;
namespace kursovaya.Models;
public partial class Student
{
public int Id { get; set; }
public string Fio { get; set; } = null!;
public int IdGroup { get; set; }
public string Login { get; set; } = null!;
public virtual ICollection<Attestation> Attestations { get; set; } = new List<Attestation>();
public virtual Group IdGroupNavigation { get; set; } = null!;
public virtual User LoginNavigation { get; set; } = null!;
}