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