9 lines
185 B
C#
9 lines
185 B
C#
namespace Flawless.Communication.Response;
|
|
|
|
public record CommentResponse(
|
|
int CommentId,
|
|
string Author,
|
|
string Content,
|
|
DateTime CreatedAt,
|
|
int? ReplyToId = null
|
|
); |