From c95acd2101dcd410835318e82ec911d18cdebd75 Mon Sep 17 00:00:00 2001 From: Berkan Sasmaz Date: Thu, 9 Sep 2021 11:15:31 +0300 Subject: [PATCH] fix(Blogging): Add IHasConcurrencyStamp to BlogDto for unmapped member error --- .../Volo/Blogging/Blogs/Dtos/BlogDto.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/blogging/src/Volo.Blogging.Application.Contracts.Shared/Volo/Blogging/Blogs/Dtos/BlogDto.cs b/modules/blogging/src/Volo.Blogging.Application.Contracts.Shared/Volo/Blogging/Blogs/Dtos/BlogDto.cs index fc72ae0d25..6cd8413633 100644 --- a/modules/blogging/src/Volo.Blogging.Application.Contracts.Shared/Volo/Blogging/Blogs/Dtos/BlogDto.cs +++ b/modules/blogging/src/Volo.Blogging.Application.Contracts.Shared/Volo/Blogging/Blogs/Dtos/BlogDto.cs @@ -1,14 +1,17 @@ using System; using Volo.Abp.Application.Dtos; +using Volo.Abp.Domain.Entities; namespace Volo.Blogging.Blogs.Dtos { - public class BlogDto : FullAuditedEntityDto + public class BlogDto : FullAuditedEntityDto, IHasConcurrencyStamp { public string Name { get; set; } public string ShortName { get; set; } public string Description { get; set; } + + public string ConcurrencyStamp { get; set; } } }