Skip to content

Commit

Permalink
Renamed field
Browse files Browse the repository at this point in the history
  • Loading branch information
jmigueprieto committed Dec 4, 2024
1 parent c152d22 commit 4d9d398
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions csharp-examples/TestWorker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ public class TestWorker : IWorkflowTask

private readonly Random rnd = new();

private readonly string _taskType;
private readonly string taskType;

public TestWorker(string taskType)
{
_taskType = taskType;
this.taskType = taskType;
}

public string TaskType => _taskType;
public string TaskType => taskType;
public WorkflowTaskExecutorConfiguration WorkerSettings { get; } = new WorkflowTaskExecutorConfiguration()
{
BatchSize = 20
Expand Down

0 comments on commit 4d9d398

Please sign in to comment.