Browse Source

fix(Blogging): Add IHasConcurrencyStamp to BlogDto for unmapped member error

pull/9995/head
Berkan Sasmaz 5 years ago
parent
commit
c95acd2101
  1. 5
      modules/blogging/src/Volo.Blogging.Application.Contracts.Shared/Volo/Blogging/Blogs/Dtos/BlogDto.cs

5
modules/blogging/src/Volo.Blogging.Application.Contracts.Shared/Volo/Blogging/Blogs/Dtos/BlogDto.cs

@ -1,14 +1,17 @@
using System; using System;
using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Dtos;
using Volo.Abp.Domain.Entities;
namespace Volo.Blogging.Blogs.Dtos namespace Volo.Blogging.Blogs.Dtos
{ {
public class BlogDto : FullAuditedEntityDto<Guid> public class BlogDto : FullAuditedEntityDto<Guid>, IHasConcurrencyStamp
{ {
public string Name { get; set; } public string Name { get; set; }
public string ShortName { get; set; } public string ShortName { get; set; }
public string Description { get; set; } public string Description { get; set; }
public string ConcurrencyStamp { get; set; }
} }
} }

Loading…
Cancel
Save