ISLoggersSettings.h 536 B

123456789101112131415161718192021
  1. //
  2. // ISLoggersSettings.h
  3. // IronSource
  4. //
  5. // Created by Yotam Ohayon on 08/01/2016.
  6. // Copyright © 2016 IronSource. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface ISLoggersSettings : NSObject
  10. @property (nonatomic, readonly) NSInteger server;
  11. @property (nonatomic, readonly) NSInteger publisher;
  12. @property (nonatomic, readonly) NSInteger console;
  13. - (instancetype)initWithServer:(NSInteger)server
  14. publisher:(NSInteger)publisher
  15. console:(NSInteger)console;
  16. @end