1
0
mirror of https://github.com/chyzy/RSystem-MVC synced 2024-11-22 15:20:27 +01:00
RSystem-MVC-Fork/RSystem/Models/MaturaExam.cs
2018-04-17 11:20:49 +02:00

18 lines
409 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace RSystem.Models
{
public class MaturaExam
{
public int RecruitEducationId { get; set; }
public string Name { get; set; }
public ICollection<MaturaResult> MaturaResults { get; set; }
public int RecruitId { get; set; }
public Recruit Recruit { get; set; }
}
}