using System.ComponentModel.DataAnnotations;
namespace Nuuru.Server.DTOs.Booru
{
///
/// Request DTO for updating an existing comment
///
public class UpdateCommentRequest
{
///
/// BBCode content of the comment
///
[Required]
[MinLength(1)]
[MaxLength(10000)]
public string Content { get; set; } = string.Empty;
}
}