using System.Runtime.InteropServices;
namespace IW4MAdmin.Application.Misc
{
///
/// dto class for handling log path generation
///
public class LogPathGeneratorInfo
{
///
/// directory under the paths where data comes from by default
/// fs_basegame
///
public string BaseGameDirectory { get; set; } = "";
///
/// base game root path
/// fs_basepath
///
public string BasePathDirectory { get; set; } = "";
///
/// overide game directory
/// plugin driven
///
public string GameDirectory { get; set; } = "";
///
/// game director
/// fs_game
///
public string ModDirectory { get; set; } = "";
///
/// log file name
/// g_log
///
public string LogFile { get; set; } = "";
///
/// indicates if running on windows
///
public bool IsWindows { get; set; } = true;
}
}