-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathObjectContainerConfiguration.cs
More file actions
31 lines (28 loc) · 1.26 KB
/
ObjectContainerConfiguration.cs
File metadata and controls
31 lines (28 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using RapidField.SolidInstruments.Core;
namespace RapidField.SolidInstruments.ObjectComposition
{
/// <summary>
/// Represents configuration information for an <see cref="ObjectContainer" /> instance.
/// </summary>
public sealed class ObjectContainerConfiguration : InstrumentConfiguration
{
/// <summary>
/// Initializes a new instance of the <see cref="ObjectContainerConfiguration" /> class.
/// </summary>
public ObjectContainerConfiguration()
: base()
{
Definitions = new ObjectContainerConfigurationDefinitions();
}
/// <summary>
/// Gets a collection of supported request-product type pairs for the associated <see cref="ObjectContainer" />.
/// </summary>
public IObjectContainerConfigurationDefinitions Definitions
{
get;
}
}
}