blob: bd786efa3354e7ab1b1be381fc24de1296a41edc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//
// TokensList.h
// Juick
//
// Created by Vitaly Takmazov on 27/03/2017.
// Copyright © 2017 com.juick. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface DeviceRegistration : NSObject
@property NSString *type;
@property NSString *token;
-(NSDictionary *) toJSON;
@end
|