namespace PaintDotNet.SystemLayer { public interface IFileOpenDialog : IFileDialog { bool CheckFileExists { get; set; } bool Multiselect { get; set; } string[] FileNames { get; } } }