1 files changed, 1 insertions, 14 deletions
diff --git a/api/src/util/entities/AssetCacheItem.ts b/api/src/util/entities/AssetCacheItem.ts
index 7fb4e1e6..160dece6 100644
--- a/api/src/util/entities/AssetCacheItem.ts
+++ b/api/src/util/entities/AssetCacheItem.ts
@@ -1,16 +1,3 @@
-import { Headers } from "node-fetch";
-
export class AssetCacheItem {
- public Key: string;
- public FilePath: string;
- public Headers: any;
-
- constructor(key: string){
- this.Key = key;
- }
- /*constructor(key: string, filePath: string, headers: Headers) {
- this.Key = key;
- this.FilePath = filePath;
- this.Headers = headers;
- }*/
+ constructor(public Key: string, public FilePath: string = "", public Headers: any = null as any) {}
}
\ No newline at end of file
|