@@ -25,55 +25,55 @@ public class OpenApiComponents : IOpenApiSerializable, IOpenApiExtensible
25
25
/// <summary>
26
26
/// An object to hold reusable <see cref="OpenApiResponse"/> Objects.
27
27
/// </summary>
28
- public virtual IDictionary < string , OpenApiResponse > ? Responses { get ; set ; } = new Dictionary < string , OpenApiResponse > ( ) ;
28
+ public IDictionary < string , OpenApiResponse > ? Responses { get ; set ; } = new Dictionary < string , OpenApiResponse > ( ) ;
29
29
30
30
/// <summary>
31
31
/// An object to hold reusable <see cref="OpenApiParameter"/> Objects.
32
32
/// </summary>
33
- public virtual IDictionary < string , OpenApiParameter > ? Parameters { get ; set ; } =
33
+ public IDictionary < string , OpenApiParameter > ? Parameters { get ; set ; } =
34
34
new Dictionary < string , OpenApiParameter > ( ) ;
35
35
36
36
/// <summary>
37
37
/// An object to hold reusable <see cref="OpenApiExample"/> Objects.
38
38
/// </summary>
39
- public virtual IDictionary < string , IOpenApiExample > ? Examples { get ; set ; } = new Dictionary < string , IOpenApiExample > ( ) ;
39
+ public IDictionary < string , IOpenApiExample > ? Examples { get ; set ; } = new Dictionary < string , IOpenApiExample > ( ) ;
40
40
41
41
/// <summary>
42
42
/// An object to hold reusable <see cref="OpenApiRequestBody"/> Objects.
43
43
/// </summary>
44
- public virtual IDictionary < string , OpenApiRequestBody > ? RequestBodies { get ; set ; } =
44
+ public IDictionary < string , OpenApiRequestBody > ? RequestBodies { get ; set ; } =
45
45
new Dictionary < string , OpenApiRequestBody > ( ) ;
46
46
47
47
/// <summary>
48
48
/// An object to hold reusable <see cref="OpenApiHeader"/> Objects.
49
49
/// </summary>
50
- public virtual IDictionary < string , OpenApiHeader > ? Headers { get ; set ; } = new Dictionary < string , OpenApiHeader > ( ) ;
50
+ public IDictionary < string , OpenApiHeader > ? Headers { get ; set ; } = new Dictionary < string , OpenApiHeader > ( ) ;
51
51
52
52
/// <summary>
53
53
/// An object to hold reusable <see cref="OpenApiSecurityScheme"/> Objects.
54
54
/// </summary>
55
- public virtual IDictionary < string , OpenApiSecurityScheme > ? SecuritySchemes { get ; set ; } =
55
+ public IDictionary < string , OpenApiSecurityScheme > ? SecuritySchemes { get ; set ; } =
56
56
new Dictionary < string , OpenApiSecurityScheme > ( ) ;
57
57
58
58
/// <summary>
59
59
/// An object to hold reusable <see cref="OpenApiLink"/> Objects.
60
60
/// </summary>
61
- public virtual IDictionary < string , OpenApiLink > ? Links { get ; set ; } = new Dictionary < string , OpenApiLink > ( ) ;
61
+ public IDictionary < string , OpenApiLink > ? Links { get ; set ; } = new Dictionary < string , OpenApiLink > ( ) ;
62
62
63
63
/// <summary>
64
64
/// An object to hold reusable <see cref="OpenApiCallback"/> Objects.
65
65
/// </summary>
66
- public virtual IDictionary < string , IOpenApiCallback > ? Callbacks { get ; set ; } = new Dictionary < string , IOpenApiCallback > ( ) ;
66
+ public IDictionary < string , IOpenApiCallback > ? Callbacks { get ; set ; } = new Dictionary < string , IOpenApiCallback > ( ) ;
67
67
68
68
/// <summary>
69
69
/// An object to hold reusable <see cref="OpenApiPathItem"/> Object.
70
70
/// </summary>
71
- public virtual IDictionary < string , OpenApiPathItem > ? PathItems { get ; set ; } = new Dictionary < string , OpenApiPathItem > ( ) ;
71
+ public IDictionary < string , OpenApiPathItem > ? PathItems { get ; set ; } = new Dictionary < string , OpenApiPathItem > ( ) ;
72
72
73
73
/// <summary>
74
74
/// This object MAY be extended with Specification Extensions.
75
75
/// </summary>
76
- public virtual IDictionary < string , IOpenApiExtension > ? Extensions { get ; set ; } = new Dictionary < string , IOpenApiExtension > ( ) ;
76
+ public IDictionary < string , IOpenApiExtension > ? Extensions { get ; set ; } = new Dictionary < string , IOpenApiExtension > ( ) ;
77
77
78
78
/// <summary>
79
79
/// Parameter-less constructor
0 commit comments