11 lines
252 B
C#
11 lines
252 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.RollCallEmployee
|
|
{
|
|
public class AdjustRollCallEmployeesWithEmployeeLeftWork
|
|
{
|
|
public DateTime LeaveDate { get; set; }
|
|
public long RollCallStatusId { get; set; }
|
|
}
|
|
}
|