14 lines
415 B
C#
14 lines
415 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.RollCall;
|
|
|
|
public class RollCallTimeViewModel
|
|
{
|
|
public string StartDate { get; set; }
|
|
public string EndDate { get; set; }
|
|
public TimeSpan TotalHours { get; set; }
|
|
public DateTime StartDateGr { get; set; }
|
|
public DateTime EndDateGr { get; set; }
|
|
public string EntryTimeDifferences { get; set; }
|
|
public string ExitTimeDifferences { get; set; }
|
|
} |