mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
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();
|
|
}
|
|
}
|