semesterWork/domain/Entity/GroupEntity.cs
2024-12-12 21:16:01 +03:00

20 lines
431 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Domain.Entity;
namespace domain.Entity
{
public class GroupEntity
{
public int GroupId { get; set; }
public string GroupName { get; set; }
public IEnumerable<StudentEntity>? Students { get; set; } = null;
public List<SubjectEntity> Subjects { get; set; }
}
}