//
//  SCUniversalAdId.h
//  SmartclipSDKiOS
//
//  Copyright © 2018 smartclip. All rights reserved.
//

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN
/**
 * This class holds the information of an universal AdId
 */
@interface SCUniversalAdId : NSObject
///idRegistry string
@property (nonatomic, copy) NSString *idRegistry;
///idValue string
@property (nonatomic, copy) NSString *idValue;
@end

NS_ASSUME_NONNULL_END
