14 lines
434 B
Dart
14 lines
434 B
Dart
import "package:moxxyv2/xmpp/jid.dart";
|
|
|
|
class ConnectionSettings {
|
|
final BareJID jid;
|
|
final String password;
|
|
final bool useDirectTLS;
|
|
final bool allowPlainAuth;
|
|
final String? streamResumptionId;
|
|
final int? lasth;
|
|
final String? resource;
|
|
|
|
ConnectionSettings({ required this.jid, required this.password, required this.useDirectTLS, required this.allowPlainAuth, this.streamResumptionId, this.resource, this.lasth });
|
|
}
|