ohmyform-api/src/entity/embedded/device.embedded.ts
2021-05-02 12:43:54 +02:00

13 lines
231 B
TypeScript

import { Column } from 'typeorm'
export class DeviceEmbedded {
@Column({ nullable: true })
public language?: string
@Column({ nullable: true })
public type?: string
@Column({ nullable: true })
public name?: string
}