Skip to content

Commit c77e783

Browse files
committed
Fix spacing
1 parent 95a017a commit c77e783

File tree

2 files changed

+31
-31
lines changed

2 files changed

+31
-31
lines changed
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
using System.Text.Json.Serialization;
2-
3-
namespace ModelContextProtocol.Protocol.Types;
4-
5-
/// <summary>
6-
/// Base class for all request parameters.
7-
/// <see href="https://github.com/modelcontextprotocol/specification/blob/main/schema/2024-11-05/schema.json#L771-L806">See the schema for details</see>
8-
/// </summary>
9-
public abstract class RequestParams
10-
{
11-
/// <summary>
12-
/// Metadata related to the tool invocation.
13-
/// </summary>
14-
[JsonPropertyName("_meta")]
15-
public RequestParamsMetadata? Meta { get; init; }
16-
}
1+
using System.Text.Json.Serialization;
2+
3+
namespace ModelContextProtocol.Protocol.Types;
4+
5+
/// <summary>
6+
/// Base class for all request parameters.
7+
/// <see href="https://github.com/modelcontextprotocol/specification/blob/main/schema/2024-11-05/schema.json#L771-L806">See the schema for details</see>
8+
/// </summary>
9+
public abstract class RequestParams
10+
{
11+
/// <summary>
12+
/// Metadata related to the tool invocation.
13+
/// </summary>
14+
[JsonPropertyName("_meta")]
15+
public RequestParamsMetadata? Meta { get; init; }
16+
}
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
using System.Text.Json.Serialization;
2-
3-
namespace ModelContextProtocol.Protocol.Types;
4-
5-
/// <summary>
6-
/// Metadata related to the request.
7-
/// </summary>
8-
public class RequestParamsMetadata
9-
{
10-
/// <summary>
11-
/// If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
12-
/// </summary>
13-
[JsonPropertyName("progressToken")]
14-
public object ProgressToken { get; set; } = default!;
15-
}
1+
using System.Text.Json.Serialization;
2+
3+
namespace ModelContextProtocol.Protocol.Types;
4+
5+
/// <summary>
6+
/// Metadata related to the request.
7+
/// </summary>
8+
public class RequestParamsMetadata
9+
{
10+
/// <summary>
11+
/// If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
12+
/// </summary>
13+
[JsonPropertyName("progressToken")]
14+
public object ProgressToken { get; set; } = default!;
15+
}

0 commit comments

Comments
 (0)