21 lines
551 B
C#
21 lines
551 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GradeBookServer.Domain.Entities
|
|
{
|
|
public class Group
|
|
{
|
|
public int ID { get; set; }
|
|
public required string Name { get; set; }
|
|
|
|
public int DirectionID { get; set; }
|
|
public Direction? Direction { get; set; }
|
|
|
|
public ICollection<Student> Students { get; set; } = new List<Student>();
|
|
public ICollection<Vedomost> Vedomosti { get; set; } = new List<Vedomost>();
|
|
}
|
|
}
|