Files
main/Tweaks/FLEX/Network/FLEXNetworkTransactionCell.h
2023-06-27 09:54:41 +02:00

21 lines
455 B
Objective-C

//
// FLEXNetworkTransactionCell.h
// Flipboard
//
// Created by Ryan Olson on 2/8/15.
// Copyright (c) 2020 FLEX Team. All rights reserved.
//
#import <UIKit/UIKit.h>
@class FLEXNetworkTransaction;
@interface FLEXNetworkTransactionCell : UITableViewCell
@property (nonatomic) FLEXNetworkTransaction *transaction;
@property (nonatomic, readonly, class) NSString *reuseID;
@property (nonatomic, readonly, class) CGFloat preferredCellHeight;
@end