aboutsummaryrefslogtreecommitdiffstats
path: root/src/file/dto/retrieve-file.dto.ts
blob: 4623e289362c884e91aca7859c8bdf3ec5f67cac (plain)
1
2
3
4
5
6
import { IsNotEmpty } from 'class-validator';

export class RetrieveFileDto {
  @IsNotEmpty()
  key: string;
}