All checks were successful
		
		
	
	Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 7m55s
				
			
		
			
				
	
	
		
			14 lines
		
	
	
		
			553 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			553 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace GestionIntegral.Api.Dtos.Reportes.ViewModels
 | 
						|
{
 | 
						|
    public class MovimientoBobinasViewModel
 | 
						|
    {
 | 
						|
        public IEnumerable<MovimientoBobinasDto> Movimientos { get; set; } = new List<MovimientoBobinasDto>();
 | 
						|
        public string NombrePlanta { get; set; } = string.Empty;
 | 
						|
        public string FechaDesde { get; set; } = string.Empty;
 | 
						|
        public string FechaHasta { get; set; } = string.Empty;
 | 
						|
        public string FechaReporte { get; set; } = DateTime.Now.ToString("dd/MM/yyyy");
 | 
						|
    }
 | 
						|
} |