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

24 lines
413 B
C#

using Notesnook.API.Models;
using Streetwriters.Common.Interfaces;
using Streetwriters.Common.Models;
namespace Notesnook.API.Interfaces
{
public interface IUserSettings : IDocument
{
string UserId { get; set; }
long LastSynced
{
get; set;
}
EncryptedData VaultKey
{
get; set;
}
string Salt { get; set; }
}
}