File tree Expand file tree Collapse file tree 4 files changed +22
-0
lines changed Expand file tree Collapse file tree 4 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,14 @@ namespace Microsoft.OpenApi.Models
8
8
/// </summary>
9
9
public class OpenApiPaths : OpenApiExtensibleDictionary < OpenApiPathItem >
10
10
{
11
+ /// <summary>
12
+ /// Parameterless constructor
13
+ /// </summary>
11
14
public OpenApiPaths ( ) { }
15
+
16
+ /// <summary>
17
+ /// Initializes a copy of <see cref="OpenApiPaths"/> object
18
+ /// </summary>
12
19
public OpenApiPaths ( OpenApiPaths paths ) { }
13
20
14
21
}
Original file line number Diff line number Diff line change @@ -8,8 +8,14 @@ namespace Microsoft.OpenApi.Models
8
8
/// </summary>
9
9
public class OpenApiResponses : OpenApiExtensibleDictionary < OpenApiResponse >
10
10
{
11
+ /// <summary>
12
+ /// Parameterless constructor
13
+ /// </summary>
11
14
public OpenApiResponses ( ) { }
12
15
16
+ /// <summary>
17
+ /// Initializes a copy of <see cref="OpenApiResponses"/> object
18
+ /// </summary>
13
19
public OpenApiResponses ( OpenApiResponses openApiResponses ) { }
14
20
15
21
}
Original file line number Diff line number Diff line change @@ -16,8 +16,14 @@ public class RuntimeExpressionAnyWrapper : IOpenApiElement
16
16
private IOpenApiAny _any ;
17
17
private RuntimeExpression _expression ;
18
18
19
+ /// <summary>
20
+ /// Parameterless constructor
21
+ /// </summary>
19
22
public RuntimeExpressionAnyWrapper ( ) { }
20
23
24
+ /// <summary>
25
+ /// Initializes a copy of an <see cref="RuntimeExpressionAnyWrapper"/> object
26
+ /// </summary>
21
27
public RuntimeExpressionAnyWrapper ( RuntimeExpressionAnyWrapper runtimeExpressionAnyWrapper )
22
28
{
23
29
Any = runtimeExpressionAnyWrapper . Any ;
Original file line number Diff line number Diff line change @@ -63,6 +63,9 @@ public OpenApiWorkspace()
63
63
BaseUrl = new Uri ( "file://" + Environment . CurrentDirectory + "\\ " ) ;
64
64
}
65
65
66
+ /// <summary>
67
+ /// Initializes a copy of an <see cref="OpenApiWorkspace"/> object
68
+ /// </summary>
66
69
public OpenApiWorkspace ( OpenApiWorkspace workspace ) { }
67
70
68
71
/// <summary>
You can’t perform that action at this time.
0 commit comments