mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-03-25 09:25:47 +00:00
16 lines
411 B
Objective-C
16 lines
411 B
Objective-C
//
|
|
// Created by Sami Samhuri on 15-05-20.
|
|
// Copyright (c) 2015 Guru Logic Inc. All rights reserved.
|
|
//
|
|
@import Foundation;
|
|
|
|
@interface SharedContent : NSObject
|
|
|
|
@property(nonatomic, readonly, copy) NSURL *url;
|
|
@property(nonatomic, readonly, copy) NSString *text;
|
|
|
|
+ (instancetype)contentWithURL:(NSURL *)url text:(NSString *)text;
|
|
- (instancetype)initWithURL:(NSURL *)url contentText:(NSString *)text;
|
|
|
|
|
|
@end
|