15 lines
359 B
C#
15 lines
359 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.RollCall
|
|
{
|
|
public class CreateOrEditEmployeeRollCall
|
|
{
|
|
public long EmployeeId { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public string DateFa { get; set; }
|
|
public List<EmployeeRollCallRecord> RollCallRecords { get; set; }
|
|
}
|
|
}
|
|
|
|
|