2024-01-25 20:33:56 -05:00
|
|
|
import 'package:meta/meta.dart';
|
|
|
|
import 'package:veilid_support/veilid_support.dart';
|
|
|
|
|
|
|
|
import '../../proto/proto.dart' as proto;
|
|
|
|
|
|
|
|
@immutable
|
|
|
|
class AcceptedContact {
|
|
|
|
const AcceptedContact({
|
2024-01-29 22:38:19 -05:00
|
|
|
required this.remoteProfile,
|
2024-01-25 20:33:56 -05:00
|
|
|
required this.remoteIdentity,
|
|
|
|
required this.remoteConversationRecordKey,
|
|
|
|
required this.localConversationRecordKey,
|
|
|
|
});
|
|
|
|
|
2024-01-29 22:38:19 -05:00
|
|
|
final proto.Profile remoteProfile;
|
2024-01-25 20:33:56 -05:00
|
|
|
final IdentityMaster remoteIdentity;
|
|
|
|
final TypedKey remoteConversationRecordKey;
|
|
|
|
final TypedKey localConversationRecordKey;
|
|
|
|
}
|