13 lines
449 B
C#
13 lines
449 B
C#
namespace PetWashControl.Services;
|
|
|
|
public class ConfigurationService
|
|
{
|
|
public string ApiBaseUrl { get; set; } = "https://localhost:7203/";
|
|
public string MqttBrokerHost { get; set; } = "localhost";
|
|
public int MqttBrokerPort { get; set; } = 1883;
|
|
public string MqttClientId { get; set; } = "PetWashControl";
|
|
|
|
public int PaymentCheckIntervalSeconds { get; set; } = 2;
|
|
public int WashSimulationSeconds { get; set; } = 10;
|
|
}
|