semesterWork/domain/Entity/GroupEntity.cs

20 lines
431 B
C#
Raw Normal View History

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;
namespace domain.Entity
{
2024-12-04 21:58:43 +00:00
public class GroupEntity
{
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; }
}
}