21 lines
689 B
C#
21 lines
689 B
C#
namespace TestApp.Configuration
|
|
{
|
|
public class Settings
|
|
{
|
|
internal const string DEFAULT_CHARGER_DRIVER = "VestelEvc04";
|
|
internal const string DEFAULT_CHARGER_ADDRESS = "192.168.178.100";
|
|
internal const int DEFAULT_CHARGER_PORT = 512;
|
|
internal const double DEFAULT_MAX_CURRENT = 32;
|
|
internal const double DEFAULT_MIN_NEGATIVE_POWER = 100;
|
|
|
|
public string? ChargerDriver { get; set; }
|
|
public string? ChargerAddress { get; set; }
|
|
public int? ChargerPort { get; set; }
|
|
|
|
public double? MaxCurrent { get; set; }
|
|
public double? MinNegativePower { get; set; }
|
|
|
|
public int Mode { get; set; }
|
|
}
|
|
}
|