12 lines
281 B
C#
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();
|
||
|
|
}
|
||
|
|
}
|