Rob / Application /DTOs /UserDTOs /AdminUpdateUserDTO.cs
danylokhodus's picture
add admin functions
3be30d5
Raw
History Blame Contribute Delete
348 Bytes
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; }
}
}