// // TokensList.h // Juick // // Created by Vitaly Takmazov on 27/03/2017. // Copyright © 2017 com.juick. All rights reserved. // #import @interface DeviceRegistration : NSObject @property NSString *type; @property NSString *token; -(NSDictionary *) toJSON; @end @implementation DeviceRegistration -(NSDictionary *) toJSON { return @{ @"type": self.type, @"token": self.token }; } @end