| 123456789101112131415161718 |
- //
- // RASingleton.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/6.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface RASingleton : NSObject
- + (instancetype)sharedInstance;
- @property (nonatomic,copy) NSString *user;
- @property (nonatomic,copy) NSString *password;
- @end
|