4 lines
127 B
TypeScript
4 lines
127 B
TypeScript
export class Photo {
|
|
constructor(public id:number, public name:string, public width:number, public height:number) {
|
|
}
|
|
} |