27 lines
564 B
C#
27 lines
564 B
C#
using Microsoft.AspNetCore.Components;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TIAMWebApp.Shared.Application.Models.ClientSide.UI;
|
|
|
|
namespace TIAMSharedUI.Pages.Components
|
|
{
|
|
public partial class StepComponent : ComponentBase
|
|
{
|
|
|
|
[Parameter]
|
|
public RenderFragment ChildContent { get; set; }
|
|
|
|
[Parameter]
|
|
public ACStepModelBase StepModel { get; set; }
|
|
|
|
|
|
[Parameter]
|
|
public EventCallback OnNext { get; set; }
|
|
|
|
|
|
}
|
|
}
|