10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
import { Embeddable, Property } from '@mikro-orm/core';
|
|
|
|
@Embeddable()
|
|
export class EducationalGoal {
|
|
@Property({ type: 'string' })
|
|
source!: string;
|
|
|
|
@Property({ type: 'string' })
|
|
id!: string;
|
|
}
|