15 lines
366 B
C#
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
|
|
|
|
}
|