Files
2025-01-14 08:29:56 +01:00

29 lines
778 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EgwControlCenter.Core
{
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; } = "";
}
}