15 lines
250 B
TypeScript
15 lines
250 B
TypeScript
/**
|
|
* Generated by orval v8.2.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
|
|
/**
|
|
* Payload for creating a task comment.
|
|
*/
|
|
export interface TaskCommentCreate {
|
|
/** @minLength 1 */
|
|
message: string;
|
|
}
|