32 lines
629 B
Objective-C
32 lines
629 B
Objective-C
#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 */
|