Initial commit: Better-Seewo EN5 plugin v1.0.1

This commit is contained in:
miao-moe
2026-06-28 01:43:01 +08:00
commit fdd3418890
22 changed files with 1309 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System.Threading.Tasks;
namespace BetterEN5.Services
{
public interface IConversionService
{
Task<string> ConvertPptxToEnbxAsync(string pptxPath);
Task<string> ConvertEnbxToPptxAsync(string enbxPath);
Task FixConversionErrorsAsync();
}
}