Files
notesnook-sync-server_custo…/Notesnook.API/Interfaces/IEncrypted.cs
2022-12-28 16:20:25 +05:00

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