Files
Backend-Api/WorkFlow/Application/WorkFlow.Application.Contracts/RollCallConfirmedWithoutLunchBreak/RollCallConfirmedWithoutLunchBreakViewModel.cs

10 lines
295 B
C#

namespace WorkFlow.Application.Contracts.RollCallConfirmedWithoutLunchBreak
{
public class RollCallConfirmedWithoutLunchBreakViewModel
{
public long EmployeeId { get; set; }
public long RollCallId { get; set; }
public string EmployeeName { get; set; }
}
}