LSFE/LSFE.Infrastructure/Dto/UpdateUserDto.cs
2026-07-30 10:31:04 +08:00

26 lines
794 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Dto
{
public class UpdateUserDto
{
public string? Id { get; set; }
public string? UserName { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
public string? FullName { get; set; }
public string? RoleId { get; set; }
public string? RoleName { get; set; }
public string? Company { get; set; }
public int? DepartmentId { get; set; }
public string? Address { get; set; }
public string? EmployeeId { get; set; }
public string? UpdatedBy { get; set; }
public string? PhoneNumber { get; set; }
}
}