Files
Backend-Api/CompanyManagment.App.Contracts/SalaryAid/CreateSalaryAidViewModel.cs
2025-05-12 17:40:15 +03:30

16 lines
481 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.SalaryAid;
public class CreateSalaryAidViewModel
{
public List<long> EmployeeIds { get; set; }
public long WorkshopId { get; set; }
public string Amount { get; set; }
public string SalaryDateTime { get; set; }
public string CalculationDateTime { get; set; }
public string NationalCode { get; set; }
public int CalculationMonth { get; set; }
public int CalculationYear { get; set; }
}