using System.ComponentModel.DataAnnotations; namespace Nuuru.Server.DTOs.User { /// /// Request to update user profile /// public class UpdateProfileDto { public string? CurrentPassword { get; set; } [MinLength(8)] public string? NewPassword { get; set; } [MaxLength(1000)] public string? Biography { get; set; } [MaxLength(100)] public string? Status { get; set; } } }