SimpleCloudNotifier/flutter/lib/models/key_token_auth.dart

7 lines
130 B
Dart
Raw Normal View History

2024-02-11 01:08:51 +01:00
class KeyTokenAuth {
final String userId;
final String token;
KeyTokenAuth({required this.userId, required this.token});
}