mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-11-22 15:20:27 +01:00
18 lines
409 B
C#
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; }
|
|
}
|
|
} |