mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 20:54:55 +00:00
feat: move PD Core into Essentials
This commit is contained in:
57
src/PepperDash.Core/PasswordManagement/Constants.cs
Normal file
57
src/PepperDash.Core/PasswordManagement/Constants.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Crestron.SimplSharp;
|
||||
|
||||
namespace PepperDash.Core.PasswordManagement
|
||||
{
|
||||
/// <summary>
|
||||
/// Constants
|
||||
/// </summary>
|
||||
public class PasswordManagementConstants
|
||||
{
|
||||
/// <summary>
|
||||
/// Generic boolean value change constant
|
||||
/// </summary>
|
||||
public const ushort BoolValueChange = 1;
|
||||
/// <summary>
|
||||
/// Evaluated boolean change constant
|
||||
/// </summary>
|
||||
public const ushort PasswordInitializedChange = 2;
|
||||
/// <summary>
|
||||
/// Update busy change const
|
||||
/// </summary>
|
||||
public const ushort PasswordUpdateBusyChange = 3;
|
||||
/// <summary>
|
||||
/// Password is valid change constant
|
||||
/// </summary>
|
||||
public const ushort PasswordValidationChange = 4;
|
||||
/// <summary>
|
||||
/// Password LED change constant
|
||||
/// </summary>
|
||||
public const ushort PasswordLedFeedbackChange = 5;
|
||||
|
||||
/// <summary>
|
||||
/// Generic ushort value change constant
|
||||
/// </summary>
|
||||
public const ushort UshrtValueChange = 101;
|
||||
/// <summary>
|
||||
/// Password count
|
||||
/// </summary>
|
||||
public const ushort PasswordManagerCountChange = 102;
|
||||
/// <summary>
|
||||
/// Password selecte index change constant
|
||||
/// </summary>
|
||||
public const ushort PasswordSelectIndexChange = 103;
|
||||
/// <summary>
|
||||
/// Password length
|
||||
/// </summary>
|
||||
public const ushort PasswordLengthChange = 104;
|
||||
|
||||
/// <summary>
|
||||
/// Generic string value change constant
|
||||
/// </summary>
|
||||
public const ushort StringValueChange = 201;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user