2022-05-08 12:28:50 -07:00

10 lines
218 B
C#

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