12 lines
No EOL
440 B
C#
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;
|
|
} |