Files
T120B165/T120B165-ImgBoard/Dtos/Comment/CreateCommentDto.cs
2025-10-04 13:27:29 +03:00

4 lines
130 B
C#

namespace T120B165_ImgBoard.Dtos.Comment;
public record CreateCommentDto(string Text);
public record EditCommentDto(string Text);