using System.Threading.Tasks; namespace BetterEN5.Services { public interface IInkService { Task ExportInkAsync(string filePath); Task ImportInkAsync(string filePath); } }