femto-backend/Femto.Modules.Blog/Application/Queries/GetPosts/Dto/PostCommentDto.cs
2025-08-10 19:57:47 +02:00

3 lines
No EOL
149 B
C#

namespace Femto.Modules.Blog.Application.Queries.GetPosts.Dto;
public record PostCommentDto(string Author, string Content, DateTimeOffset PostedOn);