using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// Specifies a name for application settings property group. This class cannot be inherited.
// Token: 0x020003D0 RID: 976
[Token(Token = "0x20003D0")]
[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: 0x06001997 RID: 6551 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001997")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
public SettingsGroupNameAttribute(string groupName)
{
}
/// Gets the name of the application settings property group.
/// A containing the name of the application settings property group.
// Token: 0x170005C1 RID: 1473
// (get) Token: 0x06001998 RID: 6552 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005C1")]
public string GroupName
{
[Token(Token = "0x6001998")]
[Address(RVA = "0x28AC200", Offset = "0x28AB000", VA = "0x1828AC200")]
get
{
return null;
}
}
}
}