18 lines
382 B
C#
18 lines
382 B
C#
using Abp.Application.Services.Dto;
|
|
using Abp.AutoMapper;
|
|
using SplashPage.Authorization.Users;
|
|
|
|
namespace SplashPage.Sessions.Dto;
|
|
|
|
[AutoMapFrom(typeof(User))]
|
|
public class UserLoginInfoDto : EntityDto<long>
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string Surname { get; set; }
|
|
|
|
public string UserName { get; set; }
|
|
|
|
public string EmailAddress { get; set; }
|
|
}
|