mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-16 13:15:03 +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;
|
private string _audioControlPointListKey;
|
||||||
public string LevelControlListKey
|
public string AudioControlPointListKey
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(_levelControlListKey))
|
if (string.IsNullOrEmpty(_audioControlPointListKey))
|
||||||
{
|
{
|
||||||
return _defaultListKey;
|
return _defaultListKey;
|
||||||
}
|
}
|
||||||
@@ -126,9 +126,9 @@ namespace PepperDash.Essentials.Core
|
|||||||
}
|
}
|
||||||
protected set
|
protected set
|
||||||
{
|
{
|
||||||
if (value != _levelControlListKey)
|
if (value != _audioControlPointListKey)
|
||||||
{
|
{
|
||||||
_levelControlListKey = value;
|
_audioControlPointListKey = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ namespace PepperDash.Essentials.Core
|
|||||||
|
|
||||||
string DestinationListKey { get; }
|
string DestinationListKey { get; }
|
||||||
|
|
||||||
string LevelControlListKey { get; }
|
string AudioControlPointListKey { get; }
|
||||||
|
|
||||||
SecondsCountdownTimer ShutdownPromptTimer { get; }
|
SecondsCountdownTimer ShutdownPromptTimer { get; }
|
||||||
int ShutdownPromptSeconds { get; }
|
int ShutdownPromptSeconds { get; }
|
||||||
|
|||||||
Reference in New Issue
Block a user