namespace XFEExtension.NetCore.AutoConfig;
///
/// 自动加载配置文件
///
/// 是否自动加载
[AttributeUsage(AttributeTargets.Class)]
public class AutoLoadProfileAttribute(bool autoLoad = true) : Attribute
{
///
/// 是否自动加载
///
internal bool AutoLoad { get; set; } = autoLoad;
}