Code owners
Assign users and groups as approvers for specific file changes. Learn more.
mapdrawing.dto.ts 190 B
import { GameDTO, FactionDTO } from '../game/game.dto';
export class MapDrawingDTO {
data: JSON;
gameId: GameDTO;
faction?: FactionDTO;
isActive?: boolean;
validUntil?: string;
}