Files
Backend-Api/WorkFlow/Application/WorkFlow.Application.Contracts/Shared/RollCallWorkFlowViewModel.cs

13 lines
369 B
C#

#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 string Message { get; set; }
public long RollCallId { get; set; }
public DateTime RollCallDate { get; set; }
}