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

12 lines
291 B
C#
Raw Normal View History

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