Files
Better-Seewo/Better-EN5/Services/IInkService.cs

11 lines
201 B
C#
Raw Normal View History

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