Code-Master/generated/models/QuestionAddRequest.ts

16 lines
422 B
TypeScript
Raw Normal View History

2024-09-01 21:31:38 +08:00
/* generated using openapi-typescript-codegen -- do not edit */
2024-06-16 21:34:10 +08:00
/* 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;
};
2024-09-01 21:31:38 +08:00