kursovaya/Models/Group.cs

14 lines
285 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 Group
{
public int Id { get; set; }
public int YearAdmission { get; set; }
public virtual ICollection<Student> Students { get; set; } = new List<Student>();
}