mirror of
https://github.com/zhigang1992/shadowsocks-iOS.git
synced 2026-06-12 09:18:11 +08:00
20 lines
324 B
Objective-C
20 lines
324 B
Objective-C
//
|
|
// Bookmark.h
|
|
// OnionBrowser
|
|
//
|
|
// Created by Mike Tigas on 9/9/12.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
|
|
|
|
@interface Bookmark : NSManagedObject
|
|
|
|
@property (nonatomic) int16_t order;
|
|
@property (nonatomic, retain) NSString * title;
|
|
@property (nonatomic, retain) NSString * url;
|
|
|
|
@end
|