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:
@@ -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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user