mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-05-23 15:09:43 +02:00
open source Notesnook API
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using Notesnook.API.Models;
|
||||
using Streetwriters.Common.Interfaces;
|
||||
|
||||
namespace Notesnook.API.Interfaces
|
||||
{
|
||||
public interface IMonograph : IDocument
|
||||
{
|
||||
string Title { get; set; }
|
||||
string UserId { get; set; }
|
||||
byte[] CompressedContent { get; set; }
|
||||
EncryptedData EncryptedContent { get; set; }
|
||||
long DatePublished { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user