123456789101112131415161718192021222324 |
- //
- // FKAddressDetailRequest.h
- // FirstLink
- //
- // Created by ascii on 15/12/7.
- // Copyright © 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class ShipAddress;
- @interface FKAddressDetailRequest : NSObject
- + (void)requestAddAddress:(int)identify
- address:(ShipAddress*)address
- deleagate:(id<FLNetworkDelegate>)delegate;
- + (void)requestModifyAddress:(int)identify
- address:(ShipAddress*)address
- deleagate:(id<FLNetworkDelegate>)delegate;
- @end
|