10 lines
352 B
C#
10 lines
352 B
C#
namespace CompanyManagment.App.Contracts.RollCallPlan;
|
|
|
|
public class RollCallPlanViewModel : EditRollCallPlan
|
|
{
|
|
public string FinalAmountStr { get; set; }
|
|
public string FinalAmountRoundStr { get; set; }
|
|
public double FinalAmountDouble { get; set; }
|
|
public string BaseAmountStr { get; set; }
|
|
public bool ActivePlan { get; set; }
|
|
} |