Continuo pagina setup x ricalcolo completo archivio

This commit is contained in:
Samuele Locatelli
2021-09-14 07:53:08 +02:00
parent a5e0100cab
commit 07a6978e01
8 changed files with 231 additions and 33 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MP.FileData.DTO
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
public class ArchiveStatusDTO
{
public string IdxMacchina { get; set; } = "";
public string Nome { get; set; } = "";
public string Descrizione { get; set; } = "";
public string BasePath { get; set; } = "";
public int TotFile { get; set; } = 0;
public int NumChanged { get; set; } = 0;
}
}