Add remember me button and more

This commit is contained in:
Rene Schwarz
2021-08-05 15:29:27 +02:00
parent 981ad26b1b
commit d25ccd136d
94 changed files with 874 additions and 172 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; }
}
}

View File

@@ -0,0 +1,9 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Server_Dashboard {
interface IWindowHelper {
Action Close { get; set; }
}
}