1
0
2025-05-21 12:56:52 +08:00

9 lines
185 B
C#

namespace Flawless.Communication.Response;
public record CommentResponse(
int CommentId,
string Author,
string Content,
DateTime CreatedAt,
int? ReplyToId = null
);