11 lines
201 B
C#
11 lines
201 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace BetterEN5.Services
|
|
{
|
|
public interface IInkService
|
|
{
|
|
Task ExportInkAsync(string filePath);
|
|
Task ImportInkAsync(string filePath);
|
|
}
|
|
}
|