// // FKAddressListViewModel.h // FirstLink // // Created by ascii on 15/12/7. // Copyright © 2015年 FirstLink. All rights reserved. // #import #import "FKAddressListController.h" extern int const FKAddressListRequestAll; extern int const FKAddressListRequestDelete; extern int const FKAddressListRequestDefault; @class ShipAddress; @interface FKAddressListViewModel : NSObject @property (nonatomic, strong) NSMutableArray *addressListArray; + (NSString *)navigationTitle:(FKAddressListControllerType)contollerType; + (NSString *)rightNaviItemTitle:(FKAddressListControllerType)contollerType; - (ShipAddress *)itemAtIndex:(NSInteger)index; - (void)setAddressSelected:(NSString *)addressID; @end