10 lines
204 B
C#
10 lines
204 B
C#
namespace EDAViewer.Models.Properties;
|
|
|
|
public interface IBackgroundPage
|
|
{
|
|
|
|
public List<Exception> Exceptions { get; }
|
|
public string Message { get; }
|
|
public string WorkingDirectory { get; }
|
|
|
|
} |