fix: updates IEssentialsRoom and EssentialsRoomBase for missed changes

This commit is contained in:
Neil Dorin
2024-05-21 17:14:13 -06:00
parent e7e448f02c
commit 048004d441
2 changed files with 6 additions and 6 deletions

View File

@@ -110,12 +110,12 @@ namespace PepperDash.Essentials.Core
}
}
private string _levelControlListKey;
public string LevelControlListKey
private string _audioControlPointListKey;
public string AudioControlPointListKey
{
get
{
if (string.IsNullOrEmpty(_levelControlListKey))
if (string.IsNullOrEmpty(_audioControlPointListKey))
{
return _defaultListKey;
}
@@ -126,9 +126,9 @@ namespace PepperDash.Essentials.Core
}
protected set
{
if (value != _levelControlListKey)
if (value != _audioControlPointListKey)
{
_levelControlListKey = value;
_audioControlPointListKey = value;
}
}
}

View File

@@ -29,7 +29,7 @@ namespace PepperDash.Essentials.Core
string DestinationListKey { get; }
string LevelControlListKey { get; }
string AudioControlPointListKey { get; }
SecondsCountdownTimer ShutdownPromptTimer { get; }
int ShutdownPromptSeconds { get; }