26 lines
808 B
C#
26 lines
808 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.Infrastructure.Dto
|
|
{
|
|
public class RegisterUserDto
|
|
{
|
|
public string? UserName { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? Password { get; set; }
|
|
public string? FullName { get; set; }
|
|
public string? Company { get; set; }
|
|
public int? DepartmentId { get; set; }
|
|
public string? Address { get; set; }
|
|
public int? AttachmentId { get; set; } = 1;
|
|
public string? EmployeeId { get; set; }
|
|
public string? RoleId { get; set; }
|
|
public string? PhoneNumber { get; set; }
|
|
public string? RoleName { get; set; }
|
|
public string? UpdatedBy { get; set; }
|
|
}
|
|
}
|