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 Companies { get; set; } = new List(); } }