Files
Yi.Framework/Yi.Abp.Net8/tool/Yi.Abp.Tool.Application.Contracts/ITemplateGenService.cs
2024-06-02 13:27:41 +08:00

13 lines
432 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<IActionResult> CreateModuleAsync(TemplateGenCreateInputDto moduleCreateInputDto);
Task<IActionResult> CreateProjectAsync(TemplateGenCreateInputDto moduleCreateInputDto);
}
}