Files
2024-11-07 17:35:22 +08:00

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();
}
}