#nullable disable namespace WorkFlow.Application.Contracts.Shared; public class RollCallWorkFlowViewModel { public long EmployeeId { get; set; } public string EmployeeName { get; set; } public long WorkshopId { get; set; } public List TimesList { get; set; } public DateTime RollCallDate { get; set; } }