Files
Mapo-IOB-WIN/IOB-MAN/TargetConfig.cs
T
2024-12-16 18:29:11 +01:00

29 lines
764 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IOB_MAN
{
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>
/// Path file di conf NLog da gestire
/// </summary>
public string NLogPath { get; set; } = "";
}
}