Files
hoppscotch/packages/hoppscotch-backend/src/infra-config/infra-config.model.ts

15 lines
240 B
TypeScript

import { Field, ObjectType } from '@nestjs/graphql';
@ObjectType()
export class InfraConfig {
@Field({
description: 'Infra Config Name',
})
name: string;
@Field({
description: 'Infra Config Value',
})
value: string;
}