13 lines
380 B
C#
13 lines
380 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Volo.Abp.Application.Services;
|
|
using Yi.Abp.Tool.Application.Contracts.Dtos;
|
|
|
|
namespace Yi.Abp.Tool.Application.Contracts
|
|
{
|
|
public interface ITemplateGenService: IApplicationService
|
|
{
|
|
Task<byte[]> CreateModuleAsync(TemplateGenCreateInputDto moduleCreateInputDto);
|
|
Task<List<string>> GetAllTemplatesAsync();
|
|
}
|
|
}
|