Files
2024-07-05 21:36:15 +03:30

58 lines
2.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.ClassifiedSalary
{
public class CreateClassifiedSalary
{
public string StartDateFa { get; set; }
public string EndDateFa { get; set; }
public int Year { get; set; }
public int YearSt { get; set; }
public double Group1 { get; set; }
public double Group2 { get; set; }
public double Group3 { get; set; }
public double Group4 { get; set; }
public double Group5 { get; set; }
public double Group6 { get; set; }
public double Group7 { get; set; }
public double Group8 { get; set; }
public double Group9 { get; set; }
public double Group10 { get; set; }
public double Group11 { get; set; }
public double Group12 { get; set; }
public double Group13 { get; set; }
public double Group14 { get; set; }
public double Group15 { get; set; }
public double Group16 { get; set; }
public double Group17 { get; set; }
public double Group18 { get; set; }
public double Group19 { get; set; }
public double Group20 { get; set; }
public string Group1Str { get; set; }
public string Group2Str { get; set; }
public string Group3Str { get; set; }
public string Group4Str { get; set; }
public string Group5Str { get; set; }
public string Group6Str { get; set; }
public string Group7Str { get; set; }
public string Group8Str { get; set; }
public string Group9Str { get; set; }
public string Group10Str { get; set; }
public string Group11Str { get; set; }
public string Group12Str { get; set; }
public string Group13Str { get; set; }
public string Group14Str { get; set; }
public string Group15Str { get; set; }
public string Group16Str { get; set; }
public string Group17Str { get; set; }
public string Group18Str { get; set; }
public string Group19Str { get; set; }
public string Group20Str { get; set; }
}
}