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