@@ -25,55 +25,55 @@ public class OpenApiComponents : IOpenApiSerializable, IOpenApiExtensible
2525 /// <summary>
2626 /// An object to hold reusable <see cref="OpenApiResponse"/> Objects.
2727 /// </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 > ( ) ;
2929
3030 /// <summary>
3131 /// An object to hold reusable <see cref="OpenApiParameter"/> Objects.
3232 /// </summary>
33- public virtual IDictionary < string , OpenApiParameter > ? Parameters { get ; set ; } =
33+ public IDictionary < string , OpenApiParameter > ? Parameters { get ; set ; } =
3434 new Dictionary < string , OpenApiParameter > ( ) ;
3535
3636 /// <summary>
3737 /// An object to hold reusable <see cref="OpenApiExample"/> Objects.
3838 /// </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 > ( ) ;
4040
4141 /// <summary>
4242 /// An object to hold reusable <see cref="OpenApiRequestBody"/> Objects.
4343 /// </summary>
44- public virtual IDictionary < string , OpenApiRequestBody > ? RequestBodies { get ; set ; } =
44+ public IDictionary < string , OpenApiRequestBody > ? RequestBodies { get ; set ; } =
4545 new Dictionary < string , OpenApiRequestBody > ( ) ;
4646
4747 /// <summary>
4848 /// An object to hold reusable <see cref="OpenApiHeader"/> Objects.
4949 /// </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 > ( ) ;
5151
5252 /// <summary>
5353 /// An object to hold reusable <see cref="OpenApiSecurityScheme"/> Objects.
5454 /// </summary>
55- public virtual IDictionary < string , OpenApiSecurityScheme > ? SecuritySchemes { get ; set ; } =
55+ public IDictionary < string , OpenApiSecurityScheme > ? SecuritySchemes { get ; set ; } =
5656 new Dictionary < string , OpenApiSecurityScheme > ( ) ;
5757
5858 /// <summary>
5959 /// An object to hold reusable <see cref="OpenApiLink"/> Objects.
6060 /// </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 > ( ) ;
6262
6363 /// <summary>
6464 /// An object to hold reusable <see cref="OpenApiCallback"/> Objects.
6565 /// </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 > ( ) ;
6767
6868 /// <summary>
6969 /// An object to hold reusable <see cref="OpenApiPathItem"/> Object.
7070 /// </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 > ( ) ;
7272
7373 /// <summary>
7474 /// This object MAY be extended with Specification Extensions.
7575 /// </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 > ( ) ;
7777
7878 /// <summary>
7979 /// Parameter-less constructor
0 commit comments