using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
namespace PepperDash.Core.PasswordManagement
{
///
/// JSON password configuration
///
public class PasswordConfig
{
///
/// Password object configured password
///
public string password { get; set; }
///
/// Constructor
///
public PasswordConfig()
{
}
}
}