NopMessage

- Added `setTestField(string testField)`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-10-02 20:50:14 +02:00
parent 401d7106b3
commit 0fe4bb08d2
1 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,11 @@ public class NopMessage : Command
return testField;
}
public string setTestField(string testField)
{
this.testField = testField;
}
public override string toString()
{
return "NopMessage [testField: "~testField~"]";