sync: fix StorageLimit does not match any field or property

This commit is contained in:
Abdullah Atta
2025-08-18 17:54:14 +05:00
parent 00c089e677
commit d3894d2a9f

View File

@@ -23,6 +23,12 @@ using Notesnook.API.Interfaces;
namespace Notesnook.API.Models
{
public class Limit
{
public long Value { get; set; }
public long UpdatedAt { get; set; }
}
public class UserSettings : IUserSettings
{
public UserSettings()
@@ -35,6 +41,7 @@ namespace Notesnook.API.Models
public EncryptedData VaultKey { get; set; }
public EncryptedData AttachmentsKey { get; set; }
public EncryptedData MonographPasswordsKey { get; set; }
public Limit StorageLimit { get; set; }
[BsonId]
[BsonRepresentation(BsonType.ObjectId)]