15 lines
579 B
C#
15 lines
579 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="ClientSettingsGroups.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.Configuration {
|
||
|
|
||
|
public sealed class ApplicationSettingsGroup : ConfigurationSectionGroup {
|
||
|
}
|
||
|
|
||
|
public sealed class UserSettingsGroup : ConfigurationSectionGroup {
|
||
|
}
|
||
|
}
|