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

12 lines
281 B
C#

using System.Threading.Tasks;
namespace BetterEN5.Services
{
public interface IConversionService
{
Task<string> ConvertPptxToEnbxAsync(string pptxPath);
Task<string> ConvertEnbxToPptxAsync(string enbxPath);
Task FixConversionErrorsAsync();
}
}