25 lines
636 B
C#
25 lines
636 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace line_gestao_api.Dtos
|
|
{
|
|
public class CreateMobileLinesBatchRequestDto
|
|
{
|
|
public List<CreateMobileLineDto> Lines { get; set; } = new();
|
|
}
|
|
|
|
public class CreateMobileLinesBatchResultDto
|
|
{
|
|
public int Created { get; set; }
|
|
public List<CreateMobileLinesBatchCreatedItemDto> 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; }
|
|
}
|
|
}
|