18 lines
427 B
C#
18 lines
427 B
C#
using GradeBookServer.Domain.Interface;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GradeBookServer.Domain.Entities
|
|
{
|
|
public class Faculty : IHasId
|
|
{
|
|
public int ID { get; set; }
|
|
public required string Name { get; set; }
|
|
|
|
public ICollection<Direction> Directions { get; set; } = new List<Direction>();
|
|
}
|
|
}
|