Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }