2024-11-16 21:45:57 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2024-12-12 18:16:01 +00:00
|
|
|
|
using Domain.Entity;
|
2024-11-16 21:45:57 +00:00
|
|
|
|
|
|
|
|
|
namespace domain.Entity
|
|
|
|
|
{
|
2024-12-04 21:58:43 +00:00
|
|
|
|
public class GroupEntity
|
2024-11-16 21:45:57 +00:00
|
|
|
|
{
|
2024-12-12 18:16:01 +00:00
|
|
|
|
public int GroupId { get; set; }
|
|
|
|
|
public string GroupName { get; set; }
|
|
|
|
|
|
|
|
|
|
public IEnumerable<StudentEntity>? Students { get; set; } = null;
|
|
|
|
|
public List<SubjectEntity> Subjects { get; set; }
|
2024-11-16 21:45:57 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|