mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 21:33:36 +00:00
* add support for disable send policy * cleanup * show/hide options support for send search results * additional failsafes and copy function consolidation * added missing disabled send icon to android renderer * async fix and string updates
24 lines
496 B
C#
24 lines
496 B
C#
using Bit.Core.Models.View;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class SendViewCellViewModel : ExtendedViewModel
|
|
{
|
|
private SendView _send;
|
|
private bool _showOptions;
|
|
|
|
public SendView Send
|
|
{
|
|
get => _send;
|
|
set => SetProperty(ref _send, value);
|
|
}
|
|
|
|
public bool ShowOptions
|
|
{
|
|
get => _showOptions;
|
|
set => SetProperty(ref _showOptions, value);
|
|
}
|
|
}
|
|
}
|