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

export class CreateStreakDto {
  @IsNotEmpty({ message: 'Streak count is required' })
  @IsString({ message: 'Streak count must be a string' })
  streak_count: string;
}
