using System.ComponentModel.DataAnnotations; namespace TaskTrackingSystem.Shared.Models.Role { public class UpdateRoleDto { [Required, MaxLength(50)] public string Name { get; set; } = string.Empty; [MaxLength(200)] public string? Description { get; set; } } }