// // Copyright (c) 2017 Open Whisper Systems. All rights reserved. // #import #import @interface PreKeyRecord : NSObject @property (nonatomic, readonly) int Id; @property (nonatomic, readonly) ECKeyPair *keyPair; - (instancetype)initWithId:(int)identifier keyPair:(ECKeyPair*)keyPair; @end