20 lines
456 B
C#
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;
|
|
}
|
|
}
|