mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-23 10:02:46 +02:00
21 lines
425 B
Objective-C
21 lines
425 B
Objective-C
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2015 OpenMarket Ltd
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
#import "MatrixKit.h"
|
|
#import <MatrixSDK/MatrixSDK.h>
|
|
|
|
@interface Contact : MXKContact
|
|
|
|
@property (nonatomic) MXRoomMember* mxMember;
|
|
|
|
@property (nonatomic) MXRoomThirdPartyInvite* mxThirdPartyInvite;
|
|
|
|
@property (nonatomic) MXGroupUser* mxGroupUser;
|
|
|
|
@end
|