mirror of
https://github.com/bitwarden/mobile
synced 2025-12-12 14:23:26 +00:00
Send feature for mobile (#1256)
* Send feature for mobile * added fallback for KdfIterations * additional property exclusions for tests * support encryptedFileData as byte array comparison in SendServiceTests * formatting * requested changes * additional changes * change position of send service registration to match declaration order
This commit is contained in:
16
src/App/Controls/SendViewCell/SendViewCellViewModel.cs
Normal file
16
src/App/Controls/SendViewCell/SendViewCellViewModel.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Bit.Core.Models.View;
|
||||
using Bit.Core.Utilities;
|
||||
|
||||
namespace Bit.App.Controls
|
||||
{
|
||||
public class SendViewCellViewModel : ExtendedViewModel
|
||||
{
|
||||
private SendView _send;
|
||||
|
||||
public SendView Send
|
||||
{
|
||||
get => _send;
|
||||
set => SetProperty(ref _send, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user