mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
13 lines
446 B
C#
13 lines
446 B
C#
using Yi.Framework.Bbs.Application.Contracts.Dtos.MyType;
|
|
using Yi.Framework.Ddd.Application.Contracts;
|
|
namespace Yi.Framework.Bbs.Application.Contracts.IServices
|
|
{
|
|
/// <summary>
|
|
/// Label服务抽象
|
|
/// </summary>
|
|
public interface IDiscussLableService : IYiCrudAppService<DiscussLableOutputDto, DiscussLableGetListOutputDto, Guid, DiscussLableGetListInputVo, DiscussLableCreateInputVo, DiscussLableUpdateInputVo>
|
|
{
|
|
|
|
}
|
|
}
|