using System; using System.Collections.Generic; namespace line_gestao_api.Dtos { public class CreateMobileLinesBatchRequestDto { public List Lines { get; set; } = new(); } public class CreateMobileLinesBatchResultDto { public int Created { get; set; } public List Items { get; set; } = new(); } public class CreateMobileLinesBatchCreatedItemDto { public Guid Id { get; set; } public int Item { get; set; } public string? Linha { get; set; } public string? Cliente { get; set; } } }