using System.ComponentModel.DataAnnotations; namespace T120B165_ImgBoard.Dtos; public record RegisterDto( string UserName, [EmailAddress] string Email, string Password );