using System; using System.Collections.Generic; using System.Security; using System.Text; namespace Server_Dashboard { /// /// Interface that makes a SecurePassword go one way /// public interface IHavePassword { SecureString SecurePassword { get; } } }