1
0
mirror of https://github.com/bitwarden/mobile.git synced 2025-02-02 23:01:27 +01:00
bitwarden-mobile/src/Android/Autofill/IFilledItem.cs

12 lines
294 B
C#
Raw Normal View History

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);
}
}