using System.Collections.Generic; namespace line_gestao_api.Dtos { public class AccountCompanyDto { public string Empresa { get; set; } = ""; public List Contas { get; set; } = new(); } }