Files
Temp_MSSPLASHPage/src/SplashPage.Application/Sessions/Dto/UserLoginInfoDto.cs
2024-12-06 14:58:13 -06:00

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; }
}