23 lines
508 B
C#
23 lines
508 B
C#
using GradeBookServer.Domain.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GradeBookServer.Domain.Entities
|
|
{
|
|
public class Grade
|
|
{
|
|
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; }
|
|
}
|
|
}
|