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