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