17 lines
734 B
C#
17 lines
734 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TodoAPI2.Models
|
|
{
|
|
public class eva_create_evaluationWithSelectionViewModel: eva_create_evaluationViewModel
|
|
{
|
|
public List<eva_performance_planEntity> item_performance_plan_id { get; set; }
|
|
public List<external_employeeViewModel> item_employee_id { get; set; }
|
|
public List<eva_evaluation_groupEntity> item_evaluation_group_id { get; set; }
|
|
public List<external_employeeViewModel> item_supervisor1_id { get; set; }
|
|
public List<external_employeeViewModel> item_supervisor2_id { get; set; }
|
|
public List<external_employeeViewModel> item_supervisor3_id { get; set; }
|
|
}
|
|
} |