mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
20 lines
515 B
Dart
20 lines
515 B
Dart
import 'package:meta/meta.dart';
|
|
import 'package:veilid_support/veilid_support.dart';
|
|
|
|
import '../../proto/proto.dart' as proto;
|
|
|
|
@immutable
|
|
class AcceptedContact {
|
|
const AcceptedContact({
|
|
required this.profile,
|
|
required this.remoteIdentity,
|
|
required this.remoteConversationRecordKey,
|
|
required this.localConversationRecordKey,
|
|
});
|
|
|
|
final proto.Profile profile;
|
|
final IdentityMaster remoteIdentity;
|
|
final TypedKey remoteConversationRecordKey;
|
|
final TypedKey localConversationRecordKey;
|
|
}
|