mirror of
https://github.com/shuguangnet/Code-Master.git
synced 2025-01-23 07:58:44 +08:00
16 lines
422 B
TypeScript
16 lines
422 B
TypeScript
/* generated using openapi-typescript-codegen -- do not 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;
|
|
};
|
|
|