Files
moadiran/Shared/DTOs/UserAuthenticationDTO.cs
mmrbnjd 3f0a37a08b ...
2024-04-17 15:49:34 +03:30

15 lines
362 B
C#

using System.Security.Principal;
namespace Shared.DTOs
{
public class UserAuthenticationDTO
{
public string FullName { get; set; }
public string Token { get; set; }
public string Photo { get; set; }
public ICollection<CompanyAuthenticationDTO> Companies { get; set; } = new List<CompanyAuthenticationDTO>();
}
}