2025SELab2-project-Dwengo/backend/src/entities/content/educational-goal.entity.ts

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;
}