mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
fix: updates IEssentialsRoom and EssentialsRoomBase for missed changes
This commit is contained in:
parent
e7e448f02c
commit
048004d441
2 changed files with 6 additions and 6 deletions
|
|
@ -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; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue