@ -4,6 +4,7 @@ using Volo.CmsKit.Blogs;
namespace Volo.CmsKit.Admin.Blogs;
[Serializable]
public class CreateBlogDto
{
[Required]
@ -1,10 +1,12 @@
using System.ComponentModel.DataAnnotations;
using System;
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Domain.Entities;
using Volo.Abp.Validation;
using Volo.CmsKit.Blogs;
public class UpdateBlogDto : IHasConcurrencyStamp
@ -1,5 +1,8 @@
namespace Volo.CmsKit.Admin.GlobalResources;
namespace Volo.CmsKit.Admin.GlobalResources;
public class GlobalResourcesDto
public string StyleContent { get; set; }
public class GlobalResourcesUpdateDto
public string Style { get; set; }
@ -3,6 +3,7 @@ using Volo.Abp.Application.Dtos;
namespace Volo.CmsKit.Admin.Menus;
public class PageLookupDto : EntityDto<Guid>
public string Title { get; set; }
@ -1,6 +1,7 @@
using System.Collections.Generic;
namespace Volo.CmsKit.Contents;
public interface IContent
public List<ContentFragment> ContentFragments { get; set; }
@ -1,8 +1,4 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp.Application.Dtos;
namespace Volo.CmsKit.Users;
@ -1,7 +1,9 @@
using Volo.Abp.Application.Dtos;
namespace Volo.CmsKit.Public.Blogs;
public class BlogPostFilteredPagedAndSortedResultRequestDto : PagedAndSortedResultRequestDto
public string Filter { get; set; }
namespace Volo.CmsKit.Public.Reactions;
namespace Volo.CmsKit.Public.Reactions;
public class ReactionWithSelectionDto
public ReactionDto Reaction { get; set; }