mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-06-14 01:55:48 +08:00
16 lines
313 B
Objective-C
16 lines
313 B
Objective-C
//
|
|
// RKTUser.h
|
|
// RKTwitter
|
|
//
|
|
// Created by Blake Watters on 9/5/10.
|
|
// Copyright (c) 2009-2012 RestKit. All rights reserved.
|
|
//
|
|
|
|
@interface RKTUser : NSObject
|
|
|
|
@property (nonatomic, copy) NSNumber *userID;
|
|
@property (nonatomic, copy) NSString *name;
|
|
@property (nonatomic, copy) NSString *screenName;
|
|
|
|
@end
|