11 lines
270 B
C#
11 lines
270 B
C#
namespace CompanyManagment.App.Contracts.DateSalaryItem;
|
|
|
|
public class DateSalaryItemSearchModel
|
|
{
|
|
public double Percent { get; set; }
|
|
public long PercentageId { get; set; }
|
|
|
|
public double Salary { get; set; }
|
|
|
|
public long DateSalaryId { get; set; }
|
|
} |