Files
moadiran/Shared/DTOs/UserAuthenticationDTO.cs

17 lines
403 B
C#
Raw Normal View History

2024-04-17 15:49:34 +03:30
using System.Security.Principal;
namespace Shared.DTOs
{
public class UserAuthenticationDTO
{
public string FullName { get; set; }
public string Token { get; set; }
2024-04-18 18:26:12 +03:30
public DateTime enterDate { get; set; }
public DateTime exitDate { get; set; }
2024-04-17 15:49:34 +03:30
public string Photo { get; set; }
2024-04-17 17:34:34 +03:30
public CompanyAuthenticationDTO Company { get; set; }
2024-04-17 15:49:34 +03:30
}
}