22 lines
519 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|