4ca4ee1acd2c37f6baec5aaaac38f3d42f40a8d4
[platform/upstream/dotnet/runtime.git] /
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4
5
6
7 //------------------------------------------------------------------------------
8
9
10 namespace System.Data.ProviderBase
11 {
12     internal class DbConnectionPoolGroupProviderInfo
13     {
14         private DbConnectionPoolGroup _poolGroup;
15
16         internal DbConnectionPoolGroup PoolGroup
17         {
18             get
19             {
20                 return _poolGroup;
21             }
22             set
23             {
24                 _poolGroup = value;
25             }
26         }
27     }
28 }