line-gestao-api/Dtos/AccountCompanyDtos.cs

11 lines
225 B
C#

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