Files
Mapo-IOB-WIN/EgwCApp/EgwCApp.Core/ConfigFile.cs
T
2022-12-17 12:37:06 +01:00

20 lines
456 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EgwCApp.Core
{
/// <summary>
/// Implementazione di riferimento x un file di configurazione x esecuzione task tramite EgwCApp
/// </summary>
public class ConfigFile
{
public string FilePath { get; set; } = "demoIn.txt";
public ImportType ImportType { get; set; } = ImportType.ND;
}
}