12 lines
221 B
TypeScript
12 lines
221 B
TypeScript
export class DbFile {
|
|
id: string | undefined;
|
|
resized: string;
|
|
thumbnail: string;
|
|
|
|
public constructor(init?: Partial<DbFile>) {
|
|
this.resized = '';
|
|
this.thumbnail = '';
|
|
Object.assign(this, init);
|
|
}
|
|
}
|