1
0
mirror of https://github.com/bitwarden/mobile.git synced 2025-01-23 21:21:27 +01:00
bitwarden-mobile/src/Android/Autofill/IFilledItem.cs
2017-11-14 23:13:55 -05:00

12 lines
294 B
C#

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