mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
363d84fd2d
// FREEBIE
19 lines
467 B
Objective-C
19 lines
467 B
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "SelectRecipientViewController.h"
|
|
|
|
@protocol NewNonContactConversationViewControllerDelegate <NSObject>
|
|
|
|
- (void)recipientIdWasSelected:(NSString *)recipientId;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@interface NewNonContactConversationViewController : SelectRecipientViewController
|
|
|
|
@property (nonatomic, weak) id<NewNonContactConversationViewControllerDelegate> nonContactConversationDelegate;
|
|
|
|
@end
|