Files
Backend-Api/CompanyManagment.App.Contracts/EmployeeComputeOptions/CreateEmployeeComputeOptions.cs
2024-07-05 21:36:15 +03:30

22 lines
622 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.EmployeeComputeOptions
{
public class CreateEmployeeComputeOptions
{
public long WorkshopId { get; set; }
public long EmployeeId { get; set; }
//نحوه محاسبه مزد مرخصی
public string ComputeOptions { get; set; }
//نحوه محاسبه عیدی
public string BonusesOptions { get; set; }
//نحوه محاسبه سنوات
public string YearsOptions { get; set; }
}
}