2023-04-09 18:58:02 +04:00

30 lines
874 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
namespace ElectronicJournalDatabaseImplement;
/// <summary>
/// Данная таблица отвечает за хранение данных по группам. Содержит три поля: id (тип integer), название (тип varchar), курс (тип integer).
/// </summary>
public partial class Group
{
/// <summary>
/// Идентификатор группы
/// </summary>
public int GroupId { get; set; }
/// <summary>
/// Название
/// </summary>
public string Title { get; set; } = null!;
/// <summary>
/// Курс
/// </summary>
public int Course { get; set; }
public virtual ICollection<Statement> Statements { get; } = new List<Statement>();
public virtual ICollection<Student> Students { get; } = new List<Student>();
}