Relativity.DataExchange.AppSettingAttribute
Represents an application setting property-based attribute. This class cannot be inherited.
namespace Relativity.DataExchange
{
internal sealed class AppSettingAttribute : Attribute
{
public object DefaultValue { get; }
public bool IsMapped { get; }
public string Key { get; }
public string Section { get; }
public AppSettingAttribute();
public AppSettingAttribute(string section, string key);
public AppSettingAttribute(string section, string key, object defaultValue);
public AppSettingAttribute(bool mapped, string section, string key, object defaultValue);
}
}