From 4d9d398e4b92005cd875c783a7ced7c9075921ef Mon Sep 17 00:00:00 2001 From: Miguel Prieto Date: Wed, 4 Dec 2024 11:51:53 -0300 Subject: [PATCH] Renamed field --- csharp-examples/TestWorker.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/csharp-examples/TestWorker.cs b/csharp-examples/TestWorker.cs index 39aa281..a1ce28e 100644 --- a/csharp-examples/TestWorker.cs +++ b/csharp-examples/TestWorker.cs @@ -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