mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
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
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; }
|
|
}
|
|
|