Code-Master/generated/models/QuestionAddRequest.ts
2024-09-01 19:59:39 +08:00

17 lines
422 B
TypeScript

/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { JudgeCase } from './JudgeCase';
import type { JudgeConfig } from './JudgeConfig';
export type QuestionAddRequest = {
answer?: string;
content?: string;
judgeCase?: Array<JudgeCase>;
judgeConfig?: JudgeConfig;
tags?: Array<string>;
title?: string;
};