using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IOB_UT_NEXT.Config.Base { public class FileDto { /// /// Folder da cui importare i file (es excel) /// public string ImportFolder { get; set; } = ""; /// /// Tipologia di files da importare (default excel) /// public string ImportType { get; set; } = ""; /// /// Folder in cui salvare i file importati (es excel) /// public string ArchiveFolder { get; set; } = ""; /// /// Folder in cui è presente il tool import excel + file json di conf /// public string ExcelToolDirPath { get; set; } = ""; } }