File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Microsoft.OpenApi/Services Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,12 @@ public class OpenApiUrlSpaceNode
18
18
/// <summary>
19
19
/// All the subdirectories of a node.
20
20
/// </summary>
21
- public IDictionary < string , OpenApiUrlSpaceNode > Children { get ; set ; } = new Dictionary < string , OpenApiUrlSpaceNode > ( ) ;
21
+ public IDictionary < string , OpenApiUrlSpaceNode > Children { get ; } = new Dictionary < string , OpenApiUrlSpaceNode > ( ) ;
22
22
23
23
/// <summary>
24
24
/// The name tag for a group of nodes.
25
25
/// </summary>
26
- public string Label { get ; set ; }
26
+ public string Label { get ; private set ; }
27
27
28
28
/// <summary>
29
29
/// Path Item object that describes the operations available on a node.
@@ -33,7 +33,7 @@ public class OpenApiUrlSpaceNode
33
33
/// <summary>
34
34
/// The relative directory path of the current node from the root node.
35
35
/// </summary>
36
- public string Path { get ; set ; } = "" ;
36
+ public string Path { get ; private set ; } = "" ;
37
37
38
38
/// <summary>
39
39
/// Flag indicating whether a node segment is a path parameter.
You can’t perform that action at this time.
0 commit comments