Files
petwash/PetWashControl/Services/ConfigurationService.cs
GukSang.Jin 434804a2c4 feat: add ui
2026-02-25 18:30:24 +08:00

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;
}