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; }
|
|
}
|
|
}
|