Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
tracking.dto.ts 188 B
import { Game_PersonEntity } from '../game/game.entity';
import { Allow } from 'class-validator';

export class TrackingDTO {
  @Allow()
  data: JSON;
  gamepersonId: Game_PersonEntity;
}