Files
modernkeepass/ModernKeePass.Domain/Dtos/Credentials.cs

9 lines
215 B
C#
Raw Normal View History

namespace ModernKeePass.Domain.Dtos
{
public class Credentials
{
public string Password { get; set; }
public byte[] KeyFileContents { get; set; }
// TODO: add Windows Hello
}
}