namespace Shared.DTOs { public class CompanyAuthenticationDTO { public int ID { get; set; } public string Name { get; set; } public string? Logo { get; set; } public bool IsAdmin { get; set; } public decimal Credit { get; set; } = 0; // public ICollection permissions { get; set; } = new List(); } }