import 'package:cloud_firestore/cloud_firestore.dart'; class ChallengeLocationRequest { final String id; final String name; final String surname; final String locationName; final DocumentReference locationRef; const ChallengeLocationRequest({ required this.id, required this.name, required this.surname, required this.locationName, required this.locationRef, }); }