PNObject/Pod/Classes/User/PNAddress.h
2016-01-13 11:24:05 +01:00

24 lines
589 B
Objective-C

//
// PNAddress.h
// Pods
//
// Created by Giuseppe Nucifora on 13/01/16.
//
//
#import <PNObject/PNObject.h>
#import "PNLocation.h"
@interface PNAddress : PNObject <PNObjectSubclassing>
@property (nonatomic, strong) NSString *country;
@property (nonatomic, strong) NSString *province;
@property (nonatomic, strong) NSString *city;
@property (nonatomic, strong) NSString *street;
@property (nonatomic, strong) NSNumber *number;
@property (nonatomic, strong) NSString *zip;
@property (nonatomic, strong) NSString *istruction;
@property (nonatomic, strong) PNLocation *location;
@end