namespace EDAViewer.Models.Properties;

public interface IBackgroundPage
{

    public List<Exception> Exceptions { get; }
    public string Message { get; }
    public string WorkingDirectory { get; }

}