kursovaya/Models/Group.cs
2025-04-11 13:14:28 +03:00

14 lines
285 B
C#

using System;
using System.Collections.Generic;
namespace kursovaya.Models;
public partial class Group
{
public int Id { get; set; }
public int YearAdmission { get; set; }
public virtual ICollection<Student> Students { get; set; } = new List<Student>();
}