summary refs log tree commit diff
path: root/api/src/util/entities/AssetCacheItem.ts
blob: 7fb4e1e618b162777cf14f67628278385744dc27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
	}*/
}