File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/ModelContextProtocol/Protocol/Types/Resources Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace ModelContextProtocol.Protocol.Types;
99public class BlobResourceContents : ResourceContents
1010{
1111 /// <summary>
12- /// The binary content of the resource .
12+ /// The base64-encoded string representing the binary data of the item .
1313 /// </summary>
1414 [ JsonPropertyName ( "blob" ) ]
1515 public string Blob { get ; set ; } = default ! ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace ModelContextProtocol.Protocol.Types;
99public class TextResourceContents : ResourceContents
1010{
1111 /// <summary>
12- /// The text content of the resource .
12+ /// The text of the item. This must only be set if the item can actually be represented as text (not binary data) .
1313 /// </summary>
1414 [ JsonPropertyName ( "text" ) ]
1515 public string Text { get ; set ; } = string . Empty ;
You can’t perform that action at this time.
0 commit comments