using System.ComponentModel.DataAnnotations; namespace Nuuru.Server.DTOs.Anonymous { public class AnonymousCommentRequest { [Required] [MaxLength(10000)] public string Content { get; set; } = string.Empty; [Required] public string CaptchaToken { get; set; } = string.Empty; } }