mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 19:22:45 +00:00
11 lines
219 B
C#
11 lines
219 B
C#
namespace Notesnook.API.Interfaces
|
|
{
|
|
public interface IEncrypted
|
|
{
|
|
string Cipher { get; set; }
|
|
string IV { get; set; }
|
|
long Length { get; set; }
|
|
string Salt { get; set; }
|
|
}
|
|
}
|