SimpleCloudNotifier/flutter/lib/models/key_token_auth.dart

7 lines
130 B
Dart

class KeyTokenAuth {
final String userId;
final String token;
KeyTokenAuth({required this.userId, required this.token});
}