| 1234567891011121314151617 |
- //
- // RADetailLocationModel.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/2.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import "RADetailBaseModel.h"
- @interface RADetailLocationModel : RADetailBaseModel
- @property (nonatomic,copy) NSString *title;
- @property (nonatomic,copy) NSString *location;
- @property (nonatomic,copy) NSString *street;
- @end
|