import { IsNotEmpty, IsString } from 'class-validator';

export class UpdateReleaseDate  {
  @IsNotEmpty()
  @IsString()
  release_date?: string;
}
