complete login function and login window also add attached properties and helper classes for securestring

This commit is contained in:
Rene Schwarz
2021-04-03 23:52:00 +02:00
parent 077f622115
commit a42f756d78
32 changed files with 377 additions and 37 deletions

View File

@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Security;
using System.Text;
namespace Server_Dashboard {
public interface IHavePassword {
SecureString SecurePassword { get; }
}
}