1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/common/entities/Directory.ts

11 lines
323 B
TypeScript
Raw Normal View History

2016-03-20 10:49:49 +01:00
import {Photo} from "./Photo";
2016-05-09 17:04:56 +02:00
export class Directory {
2016-05-04 19:05:19 +02:00
constructor(public id?:number,
2016-05-04 18:57:31 +02:00
public name?:string,
public path?:string,
public lastUpdate?:Date,
2016-05-09 17:04:56 +02:00
public directories:Array<Directory> = [],
public photos:Array<Photo> = []) {
}
2016-03-20 10:49:49 +01:00
}