mirror of https://github.com/abpframework/abp
parent
bdcff4b5d6
commit
c95acd2101
@ -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<Guid>
|
||||
public class BlogDto : FullAuditedEntityDto<Guid>, IHasConcurrencyStamp
|
||||
{
|
||||
public string Name { get; set; }
|
||||
|
||||
public string ShortName { get; set; }
|
||||
|
||||
public string Description { get; set; }
|
||||
|
||||
public string ConcurrencyStamp { get; set; }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in new issue