Остання активність 1729144579

TypeORM-readme-15.ts Неформатований
1import { Entity } from "typeorm"
2
3@Entity()
4export class Photo {
5 id: number
6 name: string
7 description: string
8 filename: string
9 views: number
10 isPublished: boolean
11}