using Application.DTOs.OrderDTOs; namespace Application.DTOs.UserDTOs { public class AdminUpdateUserDTO { public int Id { get; set; } public string? UserName { get; set; } public string? PhoneNumber { get; set; } public string? Role { get; set; } public decimal? WalletBalance { get; set; } } }