11 lines
264 B
C#
11 lines
264 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.RollCall
|
|
{
|
|
public class CurrentDayRollCall
|
|
{
|
|
public List<RollCallViewModel> PresentEmployees { get; set; }
|
|
public List<AbsentEmployeeViewModel> AbsentEmployees { get; set; }
|
|
}
|
|
}
|