mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-10-29 20:10:41 -04:00
18 lines
359 B
Objective-C
18 lines
359 B
Objective-C
//
|
|
// FLEXHTTPTransactionDetailController.h
|
|
// Flipboard
|
|
//
|
|
// Created by Ryan Olson on 2/10/15.
|
|
// Copyright (c) 2020 FLEX Team. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class FLEXHTTPTransaction;
|
|
|
|
@interface FLEXHTTPTransactionDetailController : UITableViewController
|
|
|
|
+ (instancetype)withTransaction:(FLEXHTTPTransaction *)transaction;
|
|
|
|
@end
|