15 lines
409 B
C#
15 lines
409 B
C#
namespace T120B165_ImgBoard.Dtos.Comment;
|
|
|
|
public record CommentDto(int Id, string Text, SlimUserDto Author, DateTime CreatedAt)
|
|
{
|
|
public static CommentDto FromComment(Models.Comment comment)
|
|
{
|
|
return new CommentDto(
|
|
Id: comment.Id,
|
|
Text: comment.Text,
|
|
Author: SlimUserDto.FromUser(comment.Author),
|
|
CreatedAt: comment.Created
|
|
);
|
|
}
|
|
}
|