15 lines
432 B
C#
15 lines
432 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 NationalCode { get; set; }
|
|
public int CalculationMonth { get; set; }
|
|
public int CalculationYear { get; set; }
|
|
}
|