Skip to content

Commit

Permalink
fixed static errors
Browse files Browse the repository at this point in the history
  • Loading branch information
EarliestFall988 committed Dec 9, 2023
1 parent 89c5c93 commit 3709a7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions State Machine/Custom Types/Project.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ public class Project
public float OtherCost { get; set; } = 0;

[JsonPropertyName("state")]
public string State { get; set; } = 0;
public string State { get; set; } = "";

[JsonPropertyName("status")]
public string Status { get; set; } = 0;
public string Status { get; set; } = "";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ void Setup()
{
ExpectedParameters = new Dictionary<string, Parameter>()
{
{ "decimal", new Parameter("decimal", VariableIO.In) }
{ "decimal", new Parameter("decimal", VariableIO.In) },
{ "integer", new Parameter("integer", VariableIO.Out) },
};
}
Expand Down

0 comments on commit 3709a7b

Please sign in to comment.