Open Source Web Application Framework for ASP.NET Core
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.
 
 
 
 
 
 

24 lines
486 B

using System;
using Volo.Abp.ObjectExtending;
namespace Volo.CmsKit.Admin.Comments;
[Serializable]
public class CommentDto : ExtensibleObject
{
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 bool? IsApproved { get; set; }
}