diff --git a/Notesnook.API/Models/UserSettings.cs b/Notesnook.API/Models/UserSettings.cs index fc9d4e0..3020ddc 100644 --- a/Notesnook.API/Models/UserSettings.cs +++ b/Notesnook.API/Models/UserSettings.cs @@ -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)]