Skip to content

Commit a09c726

Browse files
fix: use IList<string> for Skills property in .NET SDK
Match the established convention used by Tools, SkillDirectories, DisabledSkills, and other collection properties in the codebase. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 70ec032 commit a09c726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/Types.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1647,7 +1647,7 @@ public class CustomAgentConfig
16471647
/// When omitted, no skills are injected (opt-in model).
16481648
/// </summary>
16491649
[JsonPropertyName("skills")]
1650-
public List<string>? Skills { get; set; }
1650+
public IList<string>? Skills { get; set; }
16511651
}
16521652

16531653
/// <summary>

0 commit comments

Comments
 (0)