line-gestao-api/Dtos/ClientGroupDto.cs

11 lines
271 B
C#

namespace line_gestao_api.Dtos
{
public class ClientGroupDto
{
public string Cliente { get; set; } = string.Empty;
public int TotalLinhas { get; set; }
public int Ativos { get; set; }
public int Bloqueados { get; set; }
}
}