RASingleton.h 333 B

123456789101112131415161718
  1. //
  2. // RASingleton.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/6.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface RASingleton : NSObject
  10. + (instancetype)sharedInstance;
  11. @property (nonatomic,copy) NSString *user;
  12. @property (nonatomic,copy) NSString *password;
  13. @end