26 lines
794 B
C#
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; }
|
|
}
|
|
}
|