mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-01-13 09:30:46 +08:00
14 lines
244 B
Objective-C
14 lines
244 B
Objective-C
//
|
|
// RKPost.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 1/24/13.
|
|
// Copyright (c) 2013 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import <CoreData/CoreData.h>
|
|
|
|
@interface RKPost : NSManagedObject
|
|
@property (nonatomic, strong) NSSet *tags;
|
|
@end
|