Files
Yi.Admin/Yi.Abp.Net8/tool/Yi.Abp.Tool.Application.Contracts/ITemplateGenService.cs

13 lines
380 B
C#
Raw Normal View History

2024-06-02 13:27:41 +08:00
using Microsoft.AspNetCore.Mvc;
using Volo.Abp.Application.Services;
2024-06-02 13:09:25 +08:00
using Yi.Abp.Tool.Application.Contracts.Dtos;
namespace Yi.Abp.Tool.Application.Contracts
{
2024-06-02 13:27:41 +08:00
public interface ITemplateGenService: IApplicationService
2024-06-02 13:09:25 +08:00
{
2024-06-02 14:12:37 +08:00
Task<byte[]> CreateModuleAsync(TemplateGenCreateInputDto moduleCreateInputDto);
2024-11-07 17:35:22 +08:00
Task<List<string>> GetAllTemplatesAsync();
2024-06-02 13:09:25 +08:00
}
}