femto-backend/Femto.Api/Controllers/Posts/Dto/PostCommentDto.cs
2025-08-10 21:21:40 +02:00

3 lines
No EOL
129 B
C#

namespace Femto.Api.Controllers.Posts.Dto;
public record PostCommentDto(string Author, string Content, DateTimeOffset PostedOn);