27 lines
635 B
C#
27 lines
635 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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;
|
|
}
|
|
|
|
}
|
|
}
|