TourIAm/TIAMWebApp/Shared/Models/ClientSide/UI/ACStepModelBase.cs

22 lines
519 B
C#

using System.Reflection;
namespace TIAMWebApp.Shared.Application.Models.ClientSide.UI
{
public class ACStepModelBase
{
public PropertyInfo PropertyInfo { get; set; }
public bool IsLastStep { get; set; }
public bool IsFirstStep { get; set; }
public ACStepModelBase(PropertyInfo propertyInfo, bool isLastStep, bool isFirstStep)
{
PropertyInfo = propertyInfo;
IsLastStep = isLastStep;
IsFirstStep = isFirstStep;
}
}
}