import { IsNotEmpty } from 'class-validator';

export class AddOssDto {
  @IsNotEmpty()
  key: string;

  @IsNotEmpty()
  size: number;
}
