You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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