1
This commit is contained in:
31
Pods/LookinServer/Src/Main/Shared/LookinTuple.h
generated
Normal file
31
Pods/LookinServer/Src/Main/Shared/LookinTuple.h
generated
Normal file
@@ -0,0 +1,31 @@
|
||||
#ifdef SHOULD_COMPILE_LOOKIN_SERVER
|
||||
|
||||
//
|
||||
// LookinTuples.h
|
||||
// Lookin
|
||||
//
|
||||
// Created by Li Kai on 2019/8/14.
|
||||
// https://lookin.work
|
||||
//
|
||||
|
||||
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface LookinTwoTuple : NSObject <NSSecureCoding>
|
||||
|
||||
@property(nonatomic, strong) NSObject *first;
|
||||
@property(nonatomic, strong) NSObject *second;
|
||||
|
||||
@end
|
||||
|
||||
@interface LookinStringTwoTuple : NSObject <NSSecureCoding, NSCopying>
|
||||
|
||||
+ (instancetype)tupleWithFirst:(NSString *)firstString second:(NSString *)secondString;
|
||||
|
||||
@property(nonatomic, copy) NSString *first;
|
||||
@property(nonatomic, copy) NSString *second;
|
||||
|
||||
@end
|
||||
|
||||
#endif /* SHOULD_COMPILE_LOOKIN_SERVER */
|
||||
Reference in New Issue
Block a user