using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IOB_MAN.Core.Models
{
public class TargetConfig
{
///
/// Nome eseguibile ( x kill e ricerca)
///
public string ExeName { get; set; } = "";
///
/// Path completo eseguibile
///
public string ExePath { get; set; } = "";
///
/// Folder dove sono presenti i log generati dall'eseguibile
///
public string LogDir { get; set; } = "";
///
/// Folder dove sono presenti i file di conf
///
public string ConfDir { get; set; } = "";
///
/// Path file di conf NLog da gestire
///
public string NLogPath { get; set; } = "";
///
/// Args x lancio programma all'avvio (prima del CodIOB)
///
public string BaseArgs { get; set; } = "MODE=MAN IobAdaptConf=";
}
}