You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/modules/cms-kit/src/Volo.CmsKit.Public.Applicat.../Volo/CmsKit/Public/Contents/IContentAppService.cs

11 lines
214 B

using System.Threading.Tasks;
using Volo.CmsKit.Contents;
namespace Volo.CmsKit.Public.Contents
{
public interface IContentAppService
{
Task<ContentDto> GetAsync(GetContentInput input);
}
}