mirror of
https://github.com/bitwarden/android.git
synced 2026-05-26 07:57:09 -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
12 lines
336 B
C#
12 lines
336 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface IExportService
|
|
{
|
|
Task<string> GetExport(string format = "csv");
|
|
Task<string> GetOrganizationExport(string organizationId, string format = "csv");
|
|
string GetFileName(string prefix = null, string extension = "csv");
|
|
}
|
|
}
|