mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-03-25 09:25:47 +00:00
18 lines
280 B
Objective-C
18 lines
280 B
Objective-C
//
|
|
// DetailViewController.h
|
|
// Blog
|
|
//
|
|
// Created by Sami Samhuri on 2014-10-18.
|
|
// Copyright (c) 2014 Guru Logic Inc. All rights reserved.
|
|
//
|
|
|
|
@import UIKit;
|
|
|
|
@class Post;
|
|
|
|
@interface DetailViewController : UIViewController
|
|
|
|
@property (strong, nonatomic) Post *post;
|
|
|
|
@end
|
|
|