using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EMIS.ViewModel.Students.HighBaseTable
{
public class RecruitTerritorialReportView
{
///
/// Year
///
public Nullable Year { get; set; }
///
/// Territorial
///
public Nullable Territorial { get; set; }
///
/// EducationTypeID
///
public Nullable EducationTypeID { get; set; }
///
/// RecruitCategoryID
///
public Nullable RecruitCategoryID { get; set; }
///
/// IsFreshGraduate
///
public Nullable IsFreshGraduate { get; set; }
///
/// IsCountry
///
public Nullable IsCountry { get; set; }
///
/// RecruitCount
///
public Nullable RecruitCount { get; set; }
}
}