mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-06 17:50:51 +08:00
10 lines
355 B
C#
10 lines
355 B
C#
using Yi.Framework.Ddd.Application.Contracts;
|
|
using Yi.Framework.TenantManagement.Application.Contracts.Dtos;
|
|
|
|
namespace Yi.Framework.TenantManagement.Application.Contracts
|
|
{
|
|
public interface ITenantService:IYiCrudAppService< TenantGetOutputDto, TenantGetListOutputDto, Guid, TenantGetListInput, TenantCreateInput, TenantUpdateInput>
|
|
{
|
|
}
|
|
}
|