mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 19:22:45 +00:00
18 lines
714 B
C#
18 lines
714 B
C#
namespace Notesnook.API
|
|
{
|
|
public class Collections
|
|
{
|
|
public const string SettingsKey = "settingsv2";
|
|
public const string AttachmentsKey = "attachments";
|
|
public const string ContentKey = "content";
|
|
public const string NotesKey = "notes";
|
|
public const string NotebooksKey = "notebooks";
|
|
public const string RelationsKey = "relations";
|
|
public const string RemindersKey = "reminders";
|
|
public const string LegacySettingsKey = "settings";
|
|
public const string ShortcutsKey = "shortcuts";
|
|
public const string TagsKey = "tags";
|
|
public const string ColorsKey = "colors";
|
|
public const string VaultsKey = "vaults";
|
|
}
|
|
} |