mirror of https://github.com/abpframework/abp.git
1 changed files with 4 additions and 1 deletions
@ -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