using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
namespace PepperDash.Core.PasswordManagement
{
///
/// Constants
///
public class PasswordManagementConstants
{
///
/// Generic boolean value change constant
///
public const ushort BoolValueChange = 1;
///
/// Evaluated boolean change constant
///
public const ushort PasswordInitializedChange = 2;
///
/// Update busy change const
///
public const ushort PasswordUpdateBusyChange = 3;
///
/// Password is valid change constant
///
public const ushort PasswordValidationChange = 4;
///
/// Password LED change constant
///
public const ushort PasswordLedFeedbackChange = 5;
///
/// Generic ushort value change constant
///
public const ushort UshrtValueChange = 101;
///
/// Password count
///
public const ushort PasswordManagerCountChange = 102;
///
/// Password selecte index change constant
///
public const ushort PasswordSelectIndexChange = 103;
///
/// Password length
///
public const ushort PasswordLengthChange = 104;
///
/// Generic string value change constant
///
public const ushort StringValueChange = 201;
}
}