mirror of https://github.com/abpframework/abp.git
5 changed files with 40 additions and 6 deletions
@ -0,0 +1,27 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Volo.Abp.Application.Dtos; |
|||
|
|||
namespace Volo.Blogging.Posts |
|||
{ |
|||
public class PostDto : FullAuditedEntityDto<Guid> |
|||
{ |
|||
public Guid BlogId { get; set; } |
|||
|
|||
public string Title { get; set; } |
|||
|
|||
public string CoverImage { get; set; } |
|||
|
|||
public string Url { get; set; } |
|||
|
|||
public string Content { get; set; } |
|||
|
|||
public string UserName { get; set; } |
|||
|
|||
public int ReadCount { get; set; } |
|||
|
|||
public int CommentCount { get; set; } |
|||
|
|||
} |
|||
} |
|||
Loading…
Reference in new issue