diff --git a/Refresher.Core/Pipelines/ExamplePipeline.cs b/Refresher.Core/Pipelines/ExamplePipeline.cs index 53531e5..454b994 100644 --- a/Refresher.Core/Pipelines/ExamplePipeline.cs +++ b/Refresher.Core/Pipelines/ExamplePipeline.cs @@ -9,10 +9,10 @@ public class ExamplePipeline : Pipeline protected override List StepTypes { get; } = [ typeof(ExampleInputStep), - typeof(ExampleStep), - typeof(ExampleStep), - typeof(ExampleStep), - typeof(ExampleStep), - typeof(ExampleStep), + typeof(DelayOneSecondStep), + typeof(DelayOneSecondStep), + typeof(DelayOneSecondStep), + typeof(DelayOneSecondStep), + typeof(DelayOneSecondStep), ]; } \ No newline at end of file diff --git a/Refresher.Core/Pipelines/Steps/ExampleStep.cs b/Refresher.Core/Pipelines/Steps/DelayOneSecondStep.cs similarity index 72% rename from Refresher.Core/Pipelines/Steps/ExampleStep.cs rename to Refresher.Core/Pipelines/Steps/DelayOneSecondStep.cs index 79bd6b2..e461782 100644 --- a/Refresher.Core/Pipelines/Steps/ExampleStep.cs +++ b/Refresher.Core/Pipelines/Steps/DelayOneSecondStep.cs @@ -1,8 +1,8 @@ namespace Refresher.Core.Pipelines.Steps; -public class ExampleStep : Step +public class DelayOneSecondStep : Step { - public ExampleStep(Pipeline pipeline) : base(pipeline) + public DelayOneSecondStep(Pipeline pipeline) : base(pipeline) { }