using System.ComponentModel.DataAnnotations; namespace Nuuru.Server.DTOs.Booru { /// /// Request DTO for creating a new comment /// public class CreateCommentRequest { /// /// BBCode content of the comment /// [Required] [MinLength(1)] [MaxLength(10000)] public string Content { get; set; } = string.Empty; /// /// Whether to post the comment anonymously as 'Chud' /// public bool IsAnonymous { get; set; } } }