mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
21 lines
491 B
Objective-C
Executable file
21 lines
491 B
Objective-C
Executable file
//
|
|
// ZYInstapaperActivityItem.h
|
|
// ZYInstapaperActivity
|
|
//
|
|
// Created by Mariano Abdala on 9/29/12.
|
|
// Copyright (c) 2012 Zerously. All rights reserved.
|
|
//
|
|
// https://github.com/marianoabdala/ZYInstapaperActivity
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface ZYInstapaperActivityItem : NSObject
|
|
|
|
@property (copy, nonatomic, readonly) NSURL *url;
|
|
@property (copy, nonatomic) NSString *title;
|
|
@property (copy, nonatomic) NSString *description;
|
|
|
|
- (id)initWithURL:(NSURL *)url;
|
|
|
|
@end
|