5 lines
166 B
TypeScript
5 lines
166 B
TypeScript
|
export default class HashFSFileInformation {
|
||
|
public fileHash: string = "";
|
||
|
public fileSize: number = Number.MIN_VALUE;
|
||
|
public fileExistsAlready: boolean = false;
|
||
|
}
|