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

12 lines
281 B
C#
Raw Normal View History

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