| 1234567891011121314151617 |
- //
- // LoginOutModel.h
- // BuguLive
- //
- // Created by GuoMs on 16/7/19.
- // Copyright © 2016年 xfg. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface LoginOutModel : NSObject
- @property (nonatomic, copy) NSString *status;
- @property (nonatomic, copy) NSString *error;
- @property (nonatomic, copy) NSString *data;
- @end
|