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

9 lines
211 B
C#
Raw Normal View History

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