14 lines
331 B
C#
14 lines
331 B
C#
|
|
using BMA.EHR.Recruit.Service.Models.Documents;
|
|||
|
|
|
|||
|
|
namespace BMA.EHR.Recruit.Service.Models.Recruits
|
|||
|
|
{
|
|||
|
|
public class ScoreImport : EntityBase
|
|||
|
|
{
|
|||
|
|
public int Year { get; set; }
|
|||
|
|
|
|||
|
|
public Document ImportFile { get; set; } = new Document();
|
|||
|
|
|
|||
|
|
public virtual List<RecruitScore> Scores { get; set; } = new List<RecruitScore>();
|
|||
|
|
}
|
|||
|
|
}
|