7 lines
126 B
TypeScript
7 lines
126 B
TypeScript
import { Column } from 'typeorm'
|
|
|
|
export class AnalyticsEmbedded {
|
|
@Column({ nullable: true })
|
|
readonly gaCode?: string
|
|
}
|