2020-03-24 13:01:14 +01:00
|
|
|
|
namespace ModernKeePass.Domain.Dtos
|
|
|
|
|
{
|
|
|
|
|
public class Credentials
|
|
|
|
|
{
|
|
|
|
|
public string Password { get; set; }
|
2020-04-06 20:20:45 +02:00
|
|
|
|
public byte[] KeyFileContents { get; set; }
|
2020-03-24 13:01:14 +01:00
|
|
|
|
// TODO: add Windows Hello
|
|
|
|
|
}
|
|
|
|
|
}
|