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

9 lines
274 B
C#

namespace CompanyManagment.App.Contracts.RollCallPlan;
public class CreateRollCallPlan
{
public double FinalAmont { get; set; }
public double IncreasePercentage { get; set; }
public double BaseAmont { get; set; }
public int MaxPersonValid { get; set; }
}