29 lines
853 B
C#
29 lines
853 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// Folder da cui importare i file (es excel)
|
|
/// </summary>
|
|
public string ImportFolder { get; set; } = "";
|
|
/// <summary>
|
|
/// Tipologia di files da importare (default excel)
|
|
/// </summary>
|
|
public string ImportType { get; set; } = "";
|
|
/// <summary>
|
|
/// Folder in cui salvare i file importati (es excel)
|
|
/// </summary>
|
|
public string ArchiveFolder { get; set; } = "";
|
|
/// <summary>
|
|
/// Folder in cui è presente il tool import excel + file json di conf
|
|
/// </summary>
|
|
public string ExcelToolDirPath { get; set; } = "";
|
|
}
|
|
}
|