Files
Backend-Api/CompanyManagment.App.Contracts/RollCall/PersonnelCheckoutDailyRollCallViewModel.cs
2025-01-04 21:45:20 +03:30

15 lines
366 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.RollCall
{
#region Pooya
public class PersonnelCheckoutDailyRollCallViewModel
{
public List<CheckoutDailyRollCallViewModel> DailyRollCalls { get; set; }
public long WorkshopId { get; set; }
public long EmployeeId { get; set; }
}
#endregion
}