mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-09 17:54:59 +00:00
34 lines
899 B
C#
34 lines
899 B
C#
namespace PepperDash.Essentials
|
|
{
|
|
public class UISmartObjectJoin
|
|
{
|
|
//******************************************************
|
|
// Conference
|
|
/// <summary>
|
|
/// 1001 - The list that reveals in header to show calls
|
|
/// </summary>
|
|
public const uint CodecActiveCallsHeaderList = 1001;
|
|
|
|
// Video Conference
|
|
|
|
/// <summary>
|
|
/// 1201
|
|
/// </summary>
|
|
public const uint VCDialKeypad = 1201;
|
|
|
|
public const uint VCDirectoryList = 1202;
|
|
|
|
//******************************************************
|
|
// General
|
|
|
|
/// <summary>
|
|
/// 3200 The staging, source-select list
|
|
/// </summary>
|
|
public const uint SourceStagingSRL = 3200;
|
|
/// <summary>
|
|
/// 15022 The main activity footer
|
|
/// </summary>
|
|
public const uint ActivityFooterSRL = 15022;
|
|
|
|
}
|
|
} |