mirror of
https://github.com/bitwarden/mobile
synced 2025-12-12 06:13:21 +00:00
30 lines
659 B
C#
30 lines
659 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 SendViewCellViewModel(SendView sendView, bool showOptions)
|
|
{
|
|
Send = sendView;
|
|
ShowOptions = showOptions;
|
|
}
|
|
|
|
public SendView Send
|
|
{
|
|
get => _send;
|
|
set => SetProperty(ref _send, value);
|
|
}
|
|
|
|
public bool ShowOptions
|
|
{
|
|
get => _showOptions;
|
|
set => SetProperty(ref _showOptions, value);
|
|
}
|
|
}
|
|
}
|