1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-31 15:43:19 +00:00
Files
mobile/src/Android/Autofill/IFilledItem.cs
Kyle Spearrin 0a6767209d layout updates
2017-11-16 22:34:19 -05:00

13 lines
325 B
C#

using Android.Service.Autofill;
using System;
namespace Bit.Android.Autofill
{
public interface IFilledItem
{
string Name { get; set; }
string Subtitle { get; set; }
int Icon { get; set; }
bool ApplyToFields(FieldCollection fieldCollection, Dataset.Builder datasetBuilder);
}
}