mirror of
https://github.com/bitwarden/mobile.git
synced 2025-02-02 23:01:27 +01:00
12 lines
294 B
C#
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);
|
|||
|
}
|
|||
|
}
|