Skip to content

Commit d9f0237

Browse files
committed
Properties instead of public field
1 parent 3e0899b commit d9f0237

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/WorkflowCore.IntegrationTests/Scenarios/DynamicDataIOScenario.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ public class MyDataClass
2727
{
2828
public int Value1 { get; set; }
2929
public int Value2 { get; set; }
30-
31-
public Dictionary<string, int> Storage = new Dictionary<string, int>();
30+
public Dictionary<string, int> Storage { get; set; } = new Dictionary<string, int>();
3231

3332
public int this[string propertyName]
3433
{

0 commit comments

Comments
 (0)