mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-10-29 20:10:41 -04:00
21 lines
455 B
Objective-C
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
|