using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AIK.Common.Interface { public interface IFileDialogService { Task OpenFileAsync(string title = "选择文件"); Task SelectFolderAsync(string description = "请选择文件夹"); } }