using GradeBookServer.Domain.Enums; 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 Grade : IHasId { public int ID { get; set; } public int StudentID { get; set; } public Student? Student { get; set; } public int VedomostID { get; set; } public Vedomost? Vedomost { get; set; } public GradeValue GradeValue { get; set; } } }