mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-05 09:39:09 +08:00
23 lines
496 B
Objective-C
23 lines
496 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;
|
|
|
|
@end
|