22 lines
587 B
C#
22 lines
587 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GradeBookServer.Domain.Entities
|
|
{
|
|
public class Direction
|
|
{
|
|
public int ID { get; set; }
|
|
public required string Name { get; set; }
|
|
|
|
public int FacultyID { get; set; }
|
|
public Faculty? Faculty { get; set; }
|
|
|
|
public ICollection<Discipline> Disciplines { get; set; } = new List<Discipline>();
|
|
public ICollection<Group> Groups { get; set; } = new List<Group>();
|
|
}
|
|
}
|