mirror of https://github.com/abpframework/abp.git
committed by
GitHub
29 changed files with 1 additions and 9210 deletions
@ -1,26 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Threading.Tasks; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.Http.Client; |
|
||||
using Volo.Abp.Http.Modeling; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Http.Client.ClientProxying; |
|
||||
using Volo.CmsKit.Blogs; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Blogs.ClientProxies; |
|
||||
|
|
||||
[Dependency(ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IBlogFeatureAppService), typeof(BlogFeatureClientProxy))] |
|
||||
public partial class BlogFeatureClientProxy : ClientProxyBase<IBlogFeatureAppService>, IBlogFeatureAppService |
|
||||
{ |
|
||||
public virtual async Task<BlogFeatureDto> GetOrDefaultAsync(Guid blogId, string featureName) |
|
||||
{ |
|
||||
return await RequestAsync<BlogFeatureDto>(nameof(GetOrDefaultAsync), new ClientProxyRequestTypeValue |
|
||||
{ |
|
||||
{ typeof(Guid), blogId }, |
|
||||
{ typeof(string), featureName } |
|
||||
}); |
|
||||
} |
|
||||
} |
|
||||
@ -1,7 +0,0 @@ |
|||||
// This file is part of BlogFeatureClientProxy, you can customize it here
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Blogs.ClientProxies; |
|
||||
|
|
||||
public partial class BlogFeatureClientProxy |
|
||||
{ |
|
||||
} |
|
||||
@ -1,26 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Threading.Tasks; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.Http.Client; |
|
||||
using Volo.Abp.Http.Modeling; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Http.Client.ClientProxying; |
|
||||
using Volo.CmsKit.MediaDescriptors; |
|
||||
using Volo.Abp.Content; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.MediaDescriptors.ClientProxies; |
|
||||
|
|
||||
[Dependency(ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IMediaDescriptorAppService), typeof(MediaDescriptorClientProxy))] |
|
||||
public partial class MediaDescriptorClientProxy : ClientProxyBase<IMediaDescriptorAppService>, IMediaDescriptorAppService |
|
||||
{ |
|
||||
public virtual async Task<RemoteStreamContent> DownloadAsync(Guid id) |
|
||||
{ |
|
||||
return await RequestAsync<RemoteStreamContent>(nameof(DownloadAsync), new ClientProxyRequestTypeValue |
|
||||
{ |
|
||||
{ typeof(Guid), id } |
|
||||
}); |
|
||||
} |
|
||||
} |
|
||||
@ -1,7 +0,0 @@ |
|||||
// This file is part of MediaDescriptorClientProxy, you can customize it here
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.MediaDescriptors.ClientProxies; |
|
||||
|
|
||||
public partial class MediaDescriptorClientProxy |
|
||||
{ |
|
||||
} |
|
||||
@ -1,15 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.Blogs; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Blogs; |
|
||||
|
|
||||
public class BlogPostFilteredPagedAndSortedResultRequestDto : PagedAndSortedResultRequestDto |
|
||||
{ |
|
||||
public string Filter { get; set; } |
|
||||
} |
|
||||
@ -1,17 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.Blogs; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Blogs; |
|
||||
|
|
||||
public class BlogPostGetListInput : PagedAndSortedResultRequestDto |
|
||||
{ |
|
||||
public Guid? AuthorId { get; set; } |
|
||||
|
|
||||
public Guid? TagId { get; set; } |
|
||||
} |
|
||||
@ -1,28 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using System.Threading.Tasks; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.Application.Services; |
|
||||
using Volo.CmsKit.Contents; |
|
||||
using Volo.CmsKit.Public.Blogs; |
|
||||
using Volo.CmsKit.Users; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Blogs; |
|
||||
|
|
||||
public interface IBlogPostPublicAppService : IApplicationService |
|
||||
{ |
|
||||
Task<PagedResultDto<BlogPostCommonDto>> GetListAsync(string blogSlug, BlogPostGetListInput input); |
|
||||
|
|
||||
Task<BlogPostCommonDto> GetAsync(string blogSlug, string blogPostSlug); |
|
||||
|
|
||||
Task<PagedResultDto<CmsUserDto>> GetAuthorsHasBlogPostsAsync(BlogPostFilteredPagedAndSortedResultRequestDto input); |
|
||||
|
|
||||
Task<CmsUserDto> GetAuthorHasBlogPostAsync(Guid id); |
|
||||
|
|
||||
Task DeleteAsync(Guid id); |
|
||||
|
|
||||
Task<string> GetTagNameAsync(Guid tagId); |
|
||||
} |
|
||||
@ -1,21 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.Comments; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Comments; |
|
||||
|
|
||||
public class CmsUserDto : ExtensibleObject |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public string UserName { get; set; } |
|
||||
|
|
||||
public string Name { get; set; } |
|
||||
|
|
||||
public string Surname { get; set; } |
|
||||
} |
|
||||
@ -1,33 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.Comments; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Comments; |
|
||||
|
|
||||
public class CommentDto : ExtensibleObject |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public string EntityType { get; set; } |
|
||||
|
|
||||
public string EntityId { get; set; } |
|
||||
|
|
||||
public string Text { get; set; } |
|
||||
|
|
||||
public Guid? RepliedCommentId { get; set; } |
|
||||
|
|
||||
public Guid CreatorId { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public CmsUserDto Author { get; set; } |
|
||||
|
|
||||
public string ConcurrencyStamp { get; set; } |
|
||||
|
|
||||
public string Url { get; set; } |
|
||||
} |
|
||||
@ -1,31 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.Comments; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Comments; |
|
||||
|
|
||||
public class CommentWithDetailsDto : ExtensibleObject |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public string EntityType { get; set; } |
|
||||
|
|
||||
public string EntityId { get; set; } |
|
||||
|
|
||||
public string Text { get; set; } |
|
||||
|
|
||||
public Guid CreatorId { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public CommentDto[] Replies { get; set; } |
|
||||
|
|
||||
public CmsUserDto Author { get; set; } |
|
||||
|
|
||||
public string ConcurrencyStamp { get; set; } |
|
||||
} |
|
||||
@ -1,25 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.Comments; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Comments; |
|
||||
|
|
||||
public class CreateCommentInput : ExtensibleObject |
|
||||
{ |
|
||||
public string Text { get; set; } |
|
||||
|
|
||||
public Guid? RepliedCommentId { get; set; } |
|
||||
|
|
||||
public Guid? CaptchaToken { get; set; } |
|
||||
|
|
||||
public int CaptchaAnswer { get; set; } |
|
||||
|
|
||||
public string Url { get; set; } |
|
||||
|
|
||||
public string IdempotencyToken { get; set; } |
|
||||
} |
|
||||
@ -1,22 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using System.Threading.Tasks; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.Application.Services; |
|
||||
using Volo.CmsKit.Public.Comments; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Comments; |
|
||||
|
|
||||
public interface ICommentPublicAppService : IApplicationService |
|
||||
{ |
|
||||
Task<ListResultDto<CommentWithDetailsDto>> GetListAsync(string entityType, string entityId); |
|
||||
|
|
||||
Task<CommentDto> CreateAsync(string entityType, string entityId, CreateCommentInput input); |
|
||||
|
|
||||
Task<CommentDto> UpdateAsync(Guid id, UpdateCommentInput input); |
|
||||
|
|
||||
Task DeleteAsync(Guid id); |
|
||||
} |
|
||||
@ -1,21 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.Comments; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Comments; |
|
||||
|
|
||||
public class UpdateCommentInput : ExtensibleObject |
|
||||
{ |
|
||||
public string Text { get; set; } |
|
||||
|
|
||||
public string ConcurrencyStamp { get; set; } |
|
||||
|
|
||||
public Guid? CaptchaToken { get; set; } |
|
||||
|
|
||||
public int CaptchaAnswer { get; set; } |
|
||||
} |
|
||||
@ -1,17 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.GlobalResources; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.GlobalResources; |
|
||||
|
|
||||
public class GlobalResourceDto : ExtensibleAuditedEntityDto |
|
||||
{ |
|
||||
public string Name { get; set; } |
|
||||
|
|
||||
public string Value { get; set; } |
|
||||
} |
|
||||
@ -1,18 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using System.Threading.Tasks; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.Application.Services; |
|
||||
using Volo.CmsKit.Public.GlobalResources; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.GlobalResources; |
|
||||
|
|
||||
public interface IGlobalResourcePublicAppService : IApplicationService |
|
||||
{ |
|
||||
Task<GlobalResourceDto> GetGlobalScriptAsync(); |
|
||||
|
|
||||
Task<GlobalResourceDto> GetGlobalStyleAsync(); |
|
||||
} |
|
||||
@ -1,18 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using System.Threading.Tasks; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.Application.Services; |
|
||||
using Volo.CmsKit.Public.MarkedItems; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.MarkedItems; |
|
||||
|
|
||||
public interface IMarkedItemPublicAppService : IApplicationService |
|
||||
{ |
|
||||
Task<MarkedItemWithToggleDto> GetForUserAsync(string entityType, string entityId); |
|
||||
|
|
||||
Task<bool> ToggleAsync(string entityType, string entityId); |
|
||||
} |
|
||||
@ -1,15 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.MarkedItems; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.MarkedItems; |
|
||||
|
|
||||
public class MarkedItemDto |
|
||||
{ |
|
||||
public string IconName { get; set; } |
|
||||
} |
|
||||
@ -1,17 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.MarkedItems; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.MarkedItems; |
|
||||
|
|
||||
public class MarkedItemWithToggleDto |
|
||||
{ |
|
||||
public MarkedItemDto MarkedItem { get; set; } |
|
||||
|
|
||||
public bool IsMarkedByCurrentUser { get; set; } |
|
||||
} |
|
||||
@ -1,17 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using System.Threading.Tasks; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.Application.Services; |
|
||||
using Volo.CmsKit.Menus; |
|
||||
using Volo.CmsKit.Public.Menus; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Menus; |
|
||||
|
|
||||
public interface IMenuItemPublicAppService : IApplicationService |
|
||||
{ |
|
||||
Task<List<MenuItemDto>> GetListAsync(); |
|
||||
} |
|
||||
@ -1,21 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using System.Threading.Tasks; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.Application.Services; |
|
||||
using Volo.CmsKit.Contents; |
|
||||
using Volo.CmsKit.Public.Pages; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Pages; |
|
||||
|
|
||||
public interface IPagePublicAppService : IApplicationService |
|
||||
{ |
|
||||
Task<PageDto> FindBySlugAsync(string slug); |
|
||||
|
|
||||
Task<bool> DoesSlugExistAsync(string slug); |
|
||||
|
|
||||
Task<PageDto> FindDefaultHomePageAsync(); |
|
||||
} |
|
||||
@ -1,15 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.Ratings; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Ratings; |
|
||||
|
|
||||
public class CreateUpdateRatingInput |
|
||||
{ |
|
||||
public Int16 StarCount { get; set; } |
|
||||
} |
|
||||
@ -1,20 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using System.Threading.Tasks; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.Application.Services; |
|
||||
using Volo.CmsKit.Public.Ratings; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Ratings; |
|
||||
|
|
||||
public interface IRatingPublicAppService : IApplicationService |
|
||||
{ |
|
||||
Task<RatingDto> CreateAsync(string entityType, string entityId, CreateUpdateRatingInput input); |
|
||||
|
|
||||
Task DeleteAsync(string entityType, string entityId); |
|
||||
|
|
||||
Task<List<RatingWithStarCountDto>> GetGroupedStarCountsAsync(string entityType, string entityId); |
|
||||
} |
|
||||
@ -1,25 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.Ratings; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Ratings; |
|
||||
|
|
||||
public class RatingDto |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public string EntityType { get; set; } |
|
||||
|
|
||||
public string EntityId { get; set; } |
|
||||
|
|
||||
public Int16 StarCount { get; set; } |
|
||||
|
|
||||
public Guid CreatorId { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
} |
|
||||
@ -1,19 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.Ratings; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Ratings; |
|
||||
|
|
||||
public class RatingWithStarCountDto |
|
||||
{ |
|
||||
public Int16 StarCount { get; set; } |
|
||||
|
|
||||
public int Count { get; set; } |
|
||||
|
|
||||
public bool IsSelectedByCurrentUser { get; set; } |
|
||||
} |
|
||||
@ -1,20 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using System.Threading.Tasks; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.Application.Services; |
|
||||
using Volo.CmsKit.Public.Reactions; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Reactions; |
|
||||
|
|
||||
public interface IReactionPublicAppService : IApplicationService |
|
||||
{ |
|
||||
Task<ListResultDto<ReactionWithSelectionDto>> GetForSelectionAsync(string entityType, string entityId); |
|
||||
|
|
||||
Task CreateAsync(string entityType, string entityId, string reaction); |
|
||||
|
|
||||
Task DeleteAsync(string entityType, string entityId, string reaction); |
|
||||
} |
|
||||
@ -1,17 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.Reactions; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Reactions; |
|
||||
|
|
||||
public class ReactionDto |
|
||||
{ |
|
||||
public string Name { get; set; } |
|
||||
|
|
||||
public string DisplayName { get; set; } |
|
||||
} |
|
||||
@ -1,19 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.ObjectExtending; |
|
||||
using Volo.CmsKit.Public.Reactions; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Reactions; |
|
||||
|
|
||||
public class ReactionWithSelectionDto |
|
||||
{ |
|
||||
public ReactionDto Reaction { get; set; } |
|
||||
|
|
||||
public int Count { get; set; } |
|
||||
|
|
||||
public bool IsSelectedByCurrentUser { get; set; } |
|
||||
} |
|
||||
@ -1,18 +0,0 @@ |
|||||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using System.Threading.Tasks; |
|
||||
using Volo.Abp; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.Application.Services; |
|
||||
using Volo.CmsKit.Tags; |
|
||||
|
|
||||
// ReSharper disable once CheckNamespace
|
|
||||
namespace Volo.CmsKit.Public.Tags; |
|
||||
|
|
||||
public interface ITagAppService : IApplicationService |
|
||||
{ |
|
||||
Task<List<TagDto>> GetAllRelatedTagsAsync(string entityType, string entityId); |
|
||||
|
|
||||
Task<List<PopularTagDto>> GetPopularTagsAsync(string entityType, int maxCount); |
|
||||
} |
|
||||
File diff suppressed because it is too large
Loading…
Reference in new issue