Files
moadiran/Shared/DTOs/UserAuthenticationDTO.cs
mmrbnjd 7b8127dc72 ...
2024-04-29 07:58:41 +03:30

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