Loading...
Searching...
No Matches
NCLocationInfo.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import <Foundation/Foundation.h>
3
17DEFAULT_EXPORT_ATTRIBUTE
18@interface NCLocationInfo : NSObject
19
23- (nonnull instancetype)initWithId:(int32_t)id
24 version:(int32_t)version
25 name:(nonnull NSString *)name;
26
30+ (nonnull instancetype)locationInfoWithId:(int32_t)id
31 version:(int32_t)version
32 name:(nonnull NSString *)name;
33
37@property (nonatomic, readonly) int32_t id;
38
42@property (nonatomic, readonly) int32_t version;
43
47@property (nonatomic, readonly, nonnull) NSString * name;
48
49@end