import DigitalFile from '../../File/entity/File'; export default class Image extends DigitalFile { protected _title: string = ''; protected _description: string = ''; protected _image_resolution_letter: string = null; protected _image_resolution_width: number = null; protected _image_resolution_height: number = null; get title(): string { return this._title; } set title(value: string) { this._title = value; } get description(): string { return this._description; } set description(value: string) { this._description = value; } get image_resolution_letter(): string { return this._image_resolution_letter; } set image_resolution_letter(value: string) { this._image_resolution_letter = value; } get image_resolution_width(): number { return this._image_resolution_width; } set image_resolution_width(value: number) { this._image_resolution_width = value; } get image_resolution_height(): number { return this._image_resolution_height; } set image_resolution_height(value: number) { this._image_resolution_height = value; } }