Initial commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
namespace WebmrAPI.Configuration
|
||||
{
|
||||
public class AppSettings
|
||||
{
|
||||
public AgentSettings Agent { get; set; } = new AgentSettings();
|
||||
public WebServerSettings WebServer { get; set; } = new WebServerSettings();
|
||||
}
|
||||
|
||||
public class AgentSettings
|
||||
{
|
||||
public int ScanIntervalSeconds { get; set; } = 5; // Default scan every 5 seconds
|
||||
public string TargetProcessName { get; set; } = "example.exe"; // Default target process
|
||||
}
|
||||
|
||||
public class WebServerSettings
|
||||
{
|
||||
public string Url { get; set; } = "http://0.0.0.0:8080"; // Default listening URL
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user