24 lines
743 B
C#
24 lines
743 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.SalaryAid;
|
|
|
|
public class SalaryAidViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public string Amount { get; set; }
|
|
public double AmountDouble { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public string CreationDate { get; set; }
|
|
public string SalaryAidDateTimeFa { get; set; }
|
|
public DateTime SalaryAidDateTimeGe { get; set; }
|
|
public string CalculationDateTimeFa { get; set; }
|
|
public DateTime CalculationDateTimeGe { get; set; }
|
|
|
|
|
|
|
|
public string EmployeeFullName { get; set; }
|
|
public string PersonnelCode { get; set; }
|
|
public string MonthFa { get; set; }
|
|
public string YearFa { get; set; }
|
|
} |