mirror of
https://github.com/bitwarden/mobile
synced 2025-12-31 15:43:19 +00:00
13 lines
325 B
C#
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);
|
|
}
|
|
} |