mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-06 08:16:11 +00:00
fix: updates IEssentialsRoom and EssentialsRoomBase for missed changes
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@ namespace PepperDash.Essentials.Core
|
||||
|
||||
string DestinationListKey { get; }
|
||||
|
||||
string LevelControlListKey { get; }
|
||||
string AudioControlPointListKey { get; }
|
||||
|
||||
SecondsCountdownTimer ShutdownPromptTimer { get; }
|
||||
int ShutdownPromptSeconds { get; }
|
||||
|
||||
Reference in New Issue
Block a user