You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
462 B
15 lines
462 B
namespace leak_test_project.Models
|
|
{
|
|
public class AppConfig
|
|
{
|
|
public string LeftPort { get; set; } = "COM9";
|
|
public string RightPort { get; set; } = "COM8";
|
|
public int ZmdiBaudRate { get; set; } = 19200;
|
|
|
|
public string SensorPort { get; set; } = "COM1";
|
|
public int SensorBaudRate { get; set; } = 9600;
|
|
|
|
public double SpecUL { get; set; } = 1.00;
|
|
public double SpecLL { get; set; } = -1.00;
|
|
}
|
|
}
|
|
|