mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
WIP Clean Architecture
Windows 8.1 App Uses keepasslib v2.44 (temporarily)
This commit is contained in:
9
ModernKeePass.Domain/Dtos/Credentials.cs
Normal file
9
ModernKeePass.Domain/Dtos/Credentials.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace ModernKeePass.Domain.Dtos
|
||||
{
|
||||
public class Credentials
|
||||
{
|
||||
public string Password { get; set; }
|
||||
public string KeyFilePath { get; set; }
|
||||
// TODO: add Windows Hello
|
||||
}
|
||||
}
|
8
ModernKeePass.Domain/Dtos/FileInfo.cs
Normal file
8
ModernKeePass.Domain/Dtos/FileInfo.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace ModernKeePass.Domain.Dtos
|
||||
{
|
||||
public class FileInfo
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Path { get; set; }
|
||||
}
|
||||
}
|
16
ModernKeePass.Domain/Dtos/PasswordGenerationOptions.cs
Normal file
16
ModernKeePass.Domain/Dtos/PasswordGenerationOptions.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace ModernKeePass.Domain.Dtos
|
||||
{
|
||||
public class PasswordGenerationOptions
|
||||
{
|
||||
public int PasswordLength { get; set; }
|
||||
public bool UpperCasePatternSelected { get; set; }
|
||||
public bool LowerCasePatternSelected { get; set; }
|
||||
public bool DigitsPatternSelected { get; set; }
|
||||
public bool SpecialPatternSelected { get; set; }
|
||||
public bool MinusPatternSelected { get; set; }
|
||||
public bool UnderscorePatternSelected { get; set; }
|
||||
public bool SpacePatternSelected { get; set; }
|
||||
public bool BracketsPatternSelected { get; set; }
|
||||
public string CustomChars { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user