Files
T120B165/T120B165-ImgBoard/Dtos/Comment/CreateCommentDto.cs

6 lines
198 B
C#

using System.ComponentModel.DataAnnotations;
namespace T120B165_ImgBoard.Dtos.Comment;
public record CreateCommentDto([Required] string Text);
public record EditCommentDto([Required] string Text);