/** * Engine API * Civilization Engine API * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { TileDto } from './tileDto'; export interface CivilizationDto { uuid?: string; name?: string; names?: { [key: string]: string; }; descriptions?: { [key: string]: string; }; leaderNames?: { [key: string]: string; }; codeName?: string; startingGovernment?: string; startingTechnology?: string; maxCoins?: number; maxTrade?: number; techCostLevel1?: number; techCostLevel2?: number; techCostLevel3?: number; techCostLevel4?: number; techCostLevel5?: number; tile?: TileDto; }