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.

17 lines
270B

  1. import { Field, InputType } from '@nestjs/graphql';
  2. @InputType()
  3. export class EpisodeEnclosureCreateDto {
  4. @Field()
  5. url: string;
  6. @Field({nullable: true})
  7. file?: string;
  8. @Field({nullable: true})
  9. size?: number;
  10. @Field({nullable: true})
  11. type?: string;
  12. }