mirror of
https://github.com/bitwarden/mobile.git
synced 2025-01-23 21:21: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);
|
|
}
|
|
} |