mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
* Refactored CustomFields to stop using RepeaterView and use BindableLayout and divided the different types on different files and added a factory to create them * Fix formatting
14 lines
260 B
C#
14 lines
260 B
C#
using Bit.Core.Models.View;
|
|
|
|
namespace Bit.App.Lists.ItemViewModels.CustomFields
|
|
{
|
|
public interface ICustomFieldItemViewModel
|
|
{
|
|
FieldView Field { get; set; }
|
|
|
|
bool ShowCopyButton { get; }
|
|
|
|
void TriggerFieldChanged();
|
|
}
|
|
}
|