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