mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 19:22:45 +00:00
15 lines
375 B
C#
15 lines
375 B
C#
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; }
|
|
}
|
|
}
|