using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// Specifies the default value for an application settings property.
// Token: 0x020003BC RID: 956
[Token(Token = "0x20003BC")]
[AttributeUsage(AttributeTargets.Property)]
public sealed class DefaultSettingValueAttribute : Attribute
{
/// Initializes an instance of the class.
/// A that represents the default value for the property.
// Token: 0x06001947 RID: 6471 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001947")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")]
public DefaultSettingValueAttribute(string value)
{
}
/// Gets the default value for the application settings property.
/// A that represents the default value for the property.
// Token: 0x170005AA RID: 1450
// (get) Token: 0x06001948 RID: 6472 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005AA")]
public string Value
{
[Token(Token = "0x6001948")]
[Address(RVA = "0x2F3B7D0", Offset = "0x2F3A7D0", VA = "0x182F3B7D0")]
get
{
return null;
}
}
}
}