2022-03-29 07:23:13 -07:00

10 lines
204 B
C#

namespace APCViewer.Models.Properties;
public interface IBackgroundPage
{
public List<Exception> Exceptions { get; }
public string Message { get; }
public string WorkingDirectory { get; }
}