Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- import { Field, InputType } from '@nestjs/graphql';
-
- @InputType()
- export class EpisodeEnclosureCreateDto {
- @Field()
- url: string;
-
- @Field({nullable: true})
- file?: string;
-
- @Field({nullable: true})
- size?: number;
-
- @Field({nullable: true})
- type?: string;
- }
|