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