mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-04 07:14:58 +00:00
25 lines
502 B
C#
25 lines
502 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Core.PasswordManagement;
|
|
|
|
/// <summary>
|
|
/// JSON password configuration
|
|
/// </summary>
|
|
public class PasswordConfig
|
|
{
|
|
/// <summary>
|
|
/// Password object configured password
|
|
/// </summary>
|
|
public string password { get; set; }
|
|
/// <summary>
|
|
/// Constructor
|
|
/// </summary>
|
|
public PasswordConfig()
|
|
{
|
|
|
|
}
|
|
} |