Stub in framework for new .net Open Jibo cloud

This commit is contained in:
Jacob Dubin
2026-04-11 07:12:57 -05:00
parent 0c040d1348
commit 8f838787a0
54 changed files with 1933 additions and 897 deletions

View File

@@ -9,6 +9,13 @@ public sealed class RobotEvent
public string? SessionId { get; init; }
public string? Transcript { get; init; }
public string? WakePhrase { get; init; }
public string? DeviceId { get; init; }
public string? HostName { get; init; }
public string? RequestId { get; init; }
public string? ProtocolService { get; init; }
public string? ProtocolOperation { get; init; }
public string? FirmwareVersion { get; init; }
public string? ApplicationVersion { get; init; }
public IDictionary<string, object?> Payload { get; init; } = new Dictionary<string, object?>();
}
}