feat: pivot to social media workflow app
This commit is contained in:
16
backend/Modules/Comments/Data/Comment.cs
Normal file
16
backend/Modules/Comments/Data/Comment.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Socialize.Modules.Comments.Data;
|
||||
|
||||
public class Comment
|
||||
{
|
||||
public Guid Id { get; init; }
|
||||
public Guid WorkspaceId { get; set; }
|
||||
public Guid ContentItemId { get; set; }
|
||||
public Guid? ParentCommentId { get; set; }
|
||||
public Guid AuthorUserId { get; set; }
|
||||
public required string AuthorDisplayName { get; set; }
|
||||
public required string AuthorEmail { get; set; }
|
||||
public required string Body { get; set; }
|
||||
public bool IsResolved { get; set; }
|
||||
public DateTimeOffset CreatedAt { get; init; }
|
||||
public DateTimeOffset? ResolvedAt { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user