HAcontrol/Settings.cs
2025-08-16 20:11:06 +02:00

12 lines
No EOL
440 B
C#

namespace HAcontrol;
public class Settings
{
public string HomeAssistantUrl { get; set; } = string.Empty;
public string AccessToken { get; set; } = string.Empty;
public string WebhookId { get; set; } = string.Empty;
public string Entity { get; set; } = string.Empty;
public string FaderEntity { get; set; } = string.Empty;
public double WindowTop { get; set; } = 0;
public double WindowLeft { get; set; } = 0;
}