15 lines
371 B
C#
15 lines
371 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.RollCall
|
|
{
|
|
public class EmployeeRollCallRecord
|
|
{
|
|
public long RollCallId { get; set; }
|
|
public DateTime Date { get; set; }
|
|
|
|
public string StartDate { get; set; }
|
|
public string StartTime { get; set; }
|
|
public string EndDate { get; set; }
|
|
public string EndTime { get; set; }
|
|
}
|
|
} |