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

7 lines
126 B
TypeScript

import { Column } from 'typeorm'
export class AnalyticsEmbedded {
@Column({ nullable: true })
readonly gaCode?: string
}