Skip to content

Commit c334859

Browse files
committed
fix(dotnet): change records to internal for JSON serializer
1 parent b6fa81c commit c334859

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dotnet/src/Client.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ public static ToolDefinition FromAIFunction(AIFunction function)
10041004
=> new ToolDefinition(function.Name, function.Description, function.JsonSchema);
10051005
}
10061006

1007-
private record CreateSessionResponse(
1007+
internal record CreateSessionResponse(
10081008
string SessionId,
10091009
string? WorkspacePath);
10101010

@@ -1019,7 +1019,7 @@ internal record ResumeSessionRequest(
10191019
List<string>? SkillDirectories,
10201020
List<string>? DisabledSkills);
10211021

1022-
private record ResumeSessionResponse(
1022+
internal record ResumeSessionResponse(
10231023
string SessionId,
10241024
string? WorkspacePath);
10251025

0 commit comments

Comments
 (0)