6 lines
198 B
C#
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); |