Files
Better-Seewo/Better-EN5/Services/IInkService.cs
2026-06-28 01:43:01 +08:00

11 lines
201 B
C#

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