14 lines
244 B
TypeScript
14 lines
244 B
TypeScript
import { Field, InputType } from "type-graphql";
|
|
|
|
@InputType()
|
|
export class AgentStateInput {
|
|
@Field(() => String)
|
|
agentName: string;
|
|
|
|
@Field(() => String)
|
|
state: string;
|
|
|
|
@Field(() => String, { nullable: true })
|
|
config?: string;
|
|
}
|