mirror of
https://github.com/bitwarden/android.git
synced 2026-05-24 07:01:26 -05:00
* First pass at vault export UI * Password validation via cryptoService * Export service framework * support for constructing json export data * Support for constructing csv export data * Cleanup and simplification * Completion of vault export feature * Formatting and simplification * Use dialog instead of toast for invalid master password entry
17 lines
345 B
C#
17 lines
345 B
C#
using Bit.Core.Models.View;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Bit.Core.Models.Export
|
|
{
|
|
public class CollectionWithId : Collection
|
|
{
|
|
public CollectionWithId(CollectionView obj) : base(obj)
|
|
{
|
|
Id = obj.Id;
|
|
}
|
|
|
|
[JsonProperty(Order = int.MinValue)]
|
|
public string Id { get; set; }
|
|
}
|
|
}
|