10 lines
295 B
C#
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; }
|
|
}
|
|
}
|