import { IsNotEmpty, IsString } from 'class-validator';
import { ApiProperty } from '@nestjs/swagger';

export class FirebaseLoginDto {
  @ApiProperty({ description: 'Firebase ID token from the client' })
  @IsString()
  @IsNotEmpty()
  firebaseToken: string;
}
