mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
498 B
25 lines
498 B
using System;
|
|
|
|
namespace Volo.CmsKit.Public.Comments
|
|
{
|
|
[Serializable]
|
|
public class CommentDetailedDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public string EntityType { get; set; }
|
|
|
|
public string EntityId { get; set; }
|
|
|
|
public string Text { get; set; }
|
|
|
|
public Guid? RepliedCommentId { get; set; }
|
|
|
|
public Guid CreatorId { get; set; }
|
|
|
|
public DateTime CreationTime { get; set; }
|
|
|
|
public CmsUserDto Author { get; set; }
|
|
}
|
|
}
|