9 lines
235 B
C#
9 lines
235 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.LeftWorkTemp;
|
|
|
|
public class CreateLeftWorkTempSingleViewModel
|
|
{
|
|
public string EmployeeFullName { get; set; }
|
|
public List<long> EmployeeIds { get; set; }
|
|
} |