using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// Specifies a name for application settings property group. This class cannot be inherited.
// Token: 0x020003CC RID: 972
[Token(Token = "0x20003CC")]
[AttributeUsage(AttributeTargets.Class)]
public sealed class SettingsGroupNameAttribute : Attribute
{
/// Initializes a new instance of the class.
/// A containing the name of the application settings property group.
// Token: 0x06001980 RID: 6528 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001980")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")]
public SettingsGroupNameAttribute(string groupName)
{
}
/// Gets the name of the application settings property group.
/// A containing the name of the application settings property group.
// Token: 0x170005BD RID: 1469
// (get) Token: 0x06001981 RID: 6529 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005BD")]
public string GroupName
{
[Token(Token = "0x6001981")]
[Address(RVA = "0x2F46CB0", Offset = "0x2F45CB0", VA = "0x182F46CB0")]
get
{
return null;
}
}
}
}