Files
moadiran/Shared/DTOs/UserAuthenticationDTO.cs
2024-04-18 18:26:12 +03:30

17 lines
403 B
C#

using System.Security.Principal;
namespace Shared.DTOs
{
public class UserAuthenticationDTO
{
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; }
}
}