(private storage: SqliteAdapter)
| 10 | private instanceQuota!: number; |
| 11 | private downloadSpeedQuota!: number; |
| 12 | public constructor(private storage: SqliteAdapter) { |
| 13 | this.Load(); |
| 14 | } |
| 15 | public get StorageQuota() { return this.storageQuota; } |
| 16 | public set StorageQuota(quota: number) { |
| 17 | this.UpdateProperty(Settings.STORAGE_QUOTA_PROP, quota); |