mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 03:14:57 +00:00
26 lines
504 B
C#
26 lines
504 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()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |