13 lines
231 B
TypeScript
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
|
|
}
|