using System.Reflection;
namespace Avalonia.Markup.Xaml;
#nullable enable
public class RuntimeXamlLoaderConfiguration
{
///
/// Default assembly for clr-namespace:.
///
public Assembly? LocalAssembly { get; set; }
///
/// Defines is CompiledBinding should be used by default.
/// Default is 'false'.
///
public bool UseCompiledBindingsByDefault { get; set; } = false;
///
/// Indicates whether the XAML is being loaded in design mode.
/// Default is 'false'.
///
public bool DesignMode { get; set; } = false;
}