diff options
author | Vitaly Takmazov | 2018-12-02 23:23:31 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-12-02 23:23:31 +0300 |
commit | a293a8e049fea49b8c2b8262fb92a29f73d66989 (patch) | |
tree | 2201a139fc19fcac59714e915f08b0aa7e816517 /Juick/Model/DeviceRegistration.h | |
parent | 3bc3a38be7ccaf9622bdc86ffac37827af36f0f1 (diff) |
Drop YYModel
Diffstat (limited to 'Juick/Model/DeviceRegistration.h')
-rw-r--r-- | Juick/Model/DeviceRegistration.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Juick/Model/DeviceRegistration.h b/Juick/Model/DeviceRegistration.h index e629637..d5b620c 100644 --- a/Juick/Model/DeviceRegistration.h +++ b/Juick/Model/DeviceRegistration.h @@ -11,7 +11,15 @@ @interface DeviceRegistration : NSObject @property NSString *type; @property NSString *token; + +-(NSDictionary *) toJSON; @end @implementation DeviceRegistration +-(NSDictionary *) toJSON { + return @{ + @"type": self.type, + @"token": self.token + }; +} @end |