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

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