Files
hrm_eva/Models/eva_create_evaluation/eva_create_evaluationWithSelectionViewModel.cs
Nakorn Rientrakrunchai 8b98125e49 First Initial
2020-02-20 15:02:39 +07:00

15 lines
489 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; }
}
}