17 lines
447 B
C#
17 lines
447 B
C#
using System.Security.Principal;
|
|
|
|
namespace Shared.DTOs
|
|
{
|
|
public class UserAuthenticationDTO
|
|
{
|
|
public string UserName { get; set; }
|
|
public string FullName { get; set; }
|
|
public string Token { get; set; }
|
|
public DateTime enterDate { get; set; }
|
|
public DateTime exitDate { get; set; }
|
|
public string Photo { get; set; }
|
|
public CompanyAuthenticationDTO Company { get; set; }
|
|
|
|
}
|
|
}
|