Files
Backend-Api/CompanyManagment.App.Contracts/RollCall/RollCallTimeViewModel.cs
2025-04-09 18:38:15 +03:30

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; }
}