mirror of https://github.com/abpframework/abp.git
committed by
GitHub
10 changed files with 74 additions and 9 deletions
@ -0,0 +1,28 @@ |
|||
using System; |
|||
using Volo.Abp.Application.Dtos; |
|||
using Volo.Abp.Auditing; |
|||
|
|||
namespace Volo.CmsKit.Admin.Blogs |
|||
{ |
|||
[Serializable] |
|||
public class BlogPostListDto : EntityDto<Guid>, IHasCreationTime, IHasModificationTime |
|||
{ |
|||
public Guid BlogId { get; set; } |
|||
|
|||
public string BlogName { get; set; } |
|||
|
|||
public string Title { get; set; } |
|||
|
|||
public string Slug { get; set; } |
|||
|
|||
public string ShortDescription { get; set; } |
|||
|
|||
public string Content { get; set; } |
|||
|
|||
public Guid? CoverImageMediaId { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue