15 lines
240 B
TypeScript
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;
|
|
}
|