mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-02 22:42:45 +08:00
24 lines
547 B
Objective-C
24 lines
547 B
Objective-C
//
|
|
// DBTopic.h
|
|
// DiscussionBoard
|
|
//
|
|
// Created by Daniel Hammond on 1/7/11.
|
|
// Copyright 2011 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import <RestKit/RestKit.h>
|
|
#import <RestKit/CoreData/CoreData.h>
|
|
|
|
@interface DBTopic : RKManagedObject {
|
|
|
|
}
|
|
|
|
@property (nonatomic, retain) NSNumber* topicID;
|
|
@property (nonatomic, retain) NSString* name;
|
|
@property (nonatomic, retain) NSNumber* userID;
|
|
@property (nonatomic, retain) NSDate* createdAt;
|
|
@property (nonatomic, retain) NSDate* updatedAt;
|
|
@property (nonatomic, retain) NSString* username;
|
|
|
|
@end
|