mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
* 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
11 lines
254 B
C#
11 lines
254 B
C#
namespace Bit.App.Models
|
|
{
|
|
public class PreviousPageInfo
|
|
{
|
|
public string Page { get; set; }
|
|
public string CipherId { get; set; }
|
|
public string SendId { get; set; }
|
|
public string SearchText { get; set; }
|
|
}
|
|
}
|