mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-03 03:22:50 +08:00
12 lines
463 B
C#
12 lines
463 B
C#
using NetAdmin.Domain.Dto.Dependency;
|
|
using NetAdmin.Domain.Dto.Tpl.Example;
|
|
|
|
namespace NetAdmin.Application.Modules.Tpl;
|
|
|
|
/// <summary>
|
|
/// 示例模块
|
|
/// </summary>
|
|
public interface IExampleModule : ICrudModule<CreateExampleReq, QueryExampleRsp // 创建类型
|
|
, QueryExampleReq, QueryExampleRsp // 查询类型
|
|
, DelReq // 删除类型
|
|
>; |