1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-19 09:43:27 +00:00

Added fuzzy matches to autofill listing page. Allow autofilling from main vault search page when arriving from autofill service

This commit is contained in:
Kyle Spearrin
2017-02-13 19:12:02 -05:00
parent 99c81e5a5d
commit 75201c9b30
9 changed files with 276 additions and 638 deletions

View File

@@ -44,5 +44,16 @@ namespace Bit.App.Models.Page
public string Id { get; set; }
public string Name { get; set; } = AppResources.FolderNone;
}
public class AutofillGrouping : List<Login>
{
public AutofillGrouping(List<Login> logins, string name)
{
AddRange(logins);
Name = name;
}
public string Name { get; set; }
}
}
}