Not working

This commit is contained in:
Matthias Heil
2026-04-07 12:21:37 +02:00
parent 8038c76307
commit 7b4bbd28a1
9 changed files with 28 additions and 28 deletions
+4 -4
View File
@@ -43,13 +43,13 @@ public partial class NamedPipesServer(string pipeName,Action<string>? logger = n
}
}
[ObservableProperty]
public partial DebugObject? DebugObject { get; private set; }
public partial VisualizerModel? VisualizerModel { get; private set; }
public async Task<bool> SetDebugObjectAsync(DebugObject debugObject)
public async Task<bool> SetVisualizerModelAsync(VisualizerModel visualizerModel)
{
await Task.Delay(1);
DebugObject = debugObject;
Logger("Received DebugObject of type: " + DebugObject.Type);
VisualizerModel = visualizerModel;
Logger("NamedPipesServer, received object of type: " + visualizerModel.GetType());
return true;
}